mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-28 09:14:57 +03:00
12 lines
298 B
Bash
Executable File
12 lines
298 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Usage:
|
|
# ./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
|
|
|