Nuxt/scripts/release-edge.sh

30 lines
658 B
Bash
Raw Normal View History

#!/bin/bash
2021-07-29 14:13:10 +00:00
set -xe
# Restore all git changes
git restore -s@ -SW -- packages examples
# Bump versions to edge
yarn jiti ./scripts/bump-edge
# Resolve yarn
2021-07-29 14:13:10 +00:00
YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install
# 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
2021-07-29 14:13:10 +00:00
echo "npmAuthToken: ${NODE_AUTH_TOKEN}" >> ~/.yarnrc.yml
npm whoami
fi
# Release packages
2021-08-11 21:02:01 +00:00
for p in packages/* ; do
pushd $p
echo "Publishing $p"
2021-07-29 14:13:10 +00:00
yarn npm publish --access public --tolerate-republish
popd
done