2022-11-16 14:56:11 +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
|
|
|
|
|
2024-06-16 07:51:12 +00:00
|
|
|
# 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
|
2024-06-16 07:51:12 +00:00
|
|
|
|
2022-11-16 14:56:11 +00:00
|
|
|
# Release packages
|
|
|
|
for PKG in packages/* ; do
|
2023-08-25 23:44:57 +00:00
|
|
|
if [[ $PKG == "packages/nuxi" ]] ; then
|
2023-08-25 15:39:27 +00:00
|
|
|
continue
|
|
|
|
fi
|
2023-11-20 22:27:22 +00:00
|
|
|
if [[ $PKG == "packages/test-utils" ]] ; then
|
2023-11-06 15:38:45 +00:00
|
|
|
continue
|
|
|
|
fi
|
2024-06-11 08:54:34 +00:00
|
|
|
if [[ $PKG == "packages/ui-templates" ]] ; then
|
2024-05-01 10:08:20 +00:00
|
|
|
continue
|
|
|
|
fi
|
2022-11-16 14:56:11 +00:00
|
|
|
pushd $PKG
|
|
|
|
TAG="latest"
|
|
|
|
echo "⚡ Publishing $PKG with tag $TAG"
|
2023-01-23 16:53:59 +00:00
|
|
|
cp ../../LICENSE .
|
|
|
|
cp ../../README.md .
|
2022-11-16 14:56:11 +00:00
|
|
|
pnpm publish --access public --no-git-checks --tag $TAG
|
|
|
|
popd > /dev/null
|
|
|
|
done
|
2024-06-16 22:14:09 +00:00
|
|
|
|
|
|
|
mv README.md.bak README.md
|