mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-27 20:33:39 +03:00
19 lines
255 B
Bash
19 lines
255 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
packages=(
|
||
|
"y-indexeddb"
|
||
|
)
|
||
|
|
||
|
for package in "${packages[@]}"; do
|
||
|
cd "packages/$package"
|
||
|
yarn build
|
||
|
|
||
|
if [ "$NIGHTLY" = "true" ]; then
|
||
|
yarn npm publish --no-git-checks --tag nightly
|
||
|
else
|
||
|
yarn npm publish
|
||
|
fi
|
||
|
|
||
|
cd ../../
|
||
|
done
|