chore: bump version (#937)

This commit is contained in:
Himself65
2023-02-09 13:46:25 -06:00
committed by GitHub
parent d524fe3c6c
commit 1824ce1e80
5 changed files with 76 additions and 69 deletions
+7 -2
View File
@@ -1,6 +1,11 @@
#!/usr/bin/env bash
# Usage:
# ./scripts/upgrade-blocksuite.sh
# ./scripts/upgrade-blocksuite.sh --latest
# ./scripts/upgrade-blocksuite.sh 0.4.0-20230209191848-0a912e3
if [ "$1" == "--latest" ]; then
pnpm up "@blocksuite/*" "!@blocksuite/icons" -r -i --latest
else
pnpm up "@blocksuite/*@${1}" "!@blocksuite/icons" -r
fi
pnpm up "@blocksuite/*" "!@blocksuite/icons" -r -i "$@"