Nuxt/scripts/release-rc.sh

38 lines
827 B
Bash
Raw Permalink Normal View History

2022-04-20 11:18:15 +00:00
#!/bin/bash
set -e
# Restore all git changes
git restore -s@ -SW -- packages examples
# Build all once to ensure things are nice
pnpm build
# use absolute urls for better rendering on npm
2024-06-16 22:14:09 +00:00
sed -i.bak 's/\.\/\.github\/assets/https:\/\/github.com\/nuxt\/nuxt\/tree\/main\/\.github\/assets/g' README.md
2022-04-20 11:18:15 +00:00
# Release packages
for PKG in packages/* ; do
if [[ $PKG == "packages/nuxi" ]] ; then
2023-08-25 15:39:27 +00:00
continue
fi
if [[ $PKG == "packages/test-utils" ]] ; then
continue
fi
2024-05-01 10:08:20 +00:00
if [[ $p == "packages/ui-templates" ]] ; then
continue
fi
2022-04-20 11:18:15 +00:00
pushd $PKG
TAG="latest"
if [ "$PKG" == "packages/nuxt" ]; then
TAG="rc"
fi
echo "⚡ Publishing $PKG with tag $TAG"
cp ../../LICENSE .
cp ../../README.md .
2022-10-17 13:35:36 +00:00
pnpm publish --access public --no-git-checks --tag $TAG
2022-04-20 11:18:15 +00:00
popd > /dev/null
done
2024-06-16 22:14:09 +00:00
mv README.md.bak README.md