AFFiNE/scripts/publish.sh
2023-05-08 03:41:29 +00:00

19 lines
255 B
Bash
Executable File

#!/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