Files
AFFiNE-Mirror/scripts/publish.sh
2023-04-25 18:44:17 -05:00

20 lines
265 B
Bash
Executable File

#!/bin/bash
packages=(
"y-indexeddb"
"theme"
)
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