AFFiNE/scripts/publish.sh
2023-06-19 11:18:54 +08:00

21 lines
294 B
Bash
Executable File

#!/bin/bash
packages=(
"y-indexeddb"
"infra"
"plugin-infra"
)
for package in "${packages[@]}"; do
yarn nx build $package
cd "packages/$package"
if [ "$NIGHTLY" = "true" ]; then
yarn npm publish --no-git-checks --tag nightly
else
yarn npm publish
fi
cd ../../
done