Files
ui/scripts/release-edge.sh
Benjamin Canac d1902448ae Initial commit
2021-11-16 12:49:00 +01:00

23 lines
476 B
Bash
Executable File

#!/bin/bash
# Restore all git changes
git restore -s@ -SW -- example src test
# Bump versions to edge
yarn jiti ./scripts/bump-edge
# Resolve yarn
yarn
# 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 package
echo "Publishing @nuxthq/ui"
npm publish -q --access public