mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-30 04:53:14 +03:00
10 lines
367 B
Bash
10 lines
367 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
LATEST_NIGHTLY=$(npm view @blocksuite/editor@nightly version | cut -d ':' -f 2 | tr -d '[:space:]')
|
||
|
echo "Bump to latest BlockSuite nightly version: $LATEST_NIGHTLY"
|
||
|
|
||
|
yarn up "@blocksuite/store@${LATEST_NIGHTLY}"
|
||
|
yarn up "@blocksuite/blocks@${LATEST_NIGHTLY}"
|
||
|
yarn up "@blocksuite/editor@${LATEST_NIGHTLY}"
|
||
|
yarn up "@blocksuite/global@${LATEST_NIGHTLY}"
|