mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
22 lines
418 B
Bash
Executable File
22 lines
418 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Restore all git changes
|
|
git restore -s@ -SW -- packages examples
|
|
|
|
# Build all once to ensure things are nice
|
|
yarn build
|
|
|
|
# Release packages
|
|
for PKG in packages/* ; do
|
|
pushd $PKG
|
|
TAG="latest"
|
|
if [ "$PKG" == "packages/nuxt" ]; then
|
|
TAG="rc"
|
|
fi
|
|
echo "⚡ Publishing $PKG with tag $TAG"
|
|
npx npm@8.17.0 publish --tag $TAG --access public --tolerate-republish
|
|
popd > /dev/null
|
|
done
|