mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
30 lines
597 B
Bash
Executable File
30 lines
597 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
# Restore all git changes
|
|
git restore -s@ -SW -- packages examples
|
|
|
|
TAG=${1:-latest}
|
|
|
|
# Bump versions to edge
|
|
pnpm jiti ./scripts/bump-edge
|
|
|
|
# Update token
|
|
if [[ ! -z ${NODE_AUTH_TOKEN} ]] ; then
|
|
echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" >> ~/.npmrc
|
|
echo "registry=https://registry.npmjs.org/" >> ~/.npmrc
|
|
echo "always-auth=true" >> ~/.npmrc
|
|
npm whoami
|
|
fi
|
|
|
|
# Release packages
|
|
for p in packages/* ; do
|
|
pushd $p
|
|
echo "Publishing $p"
|
|
cp ../../LICENSE .
|
|
cp ../../README.md .
|
|
pnpm publish --access public --no-git-checks --tag $TAG
|
|
popd
|
|
done
|