set -e
echo "Enter release version: "
read VERSION
read -p "Releasing $VERSION - are you sure? (y/n)" -n 1 -r
echo # (optional) move to a new line
if [[ $REPLY =~ ^[Yy]$ ]]
then
echo "Releasing $VERSION ..."
# run tests
npm test 2>/dev/null
npm version $VERSION --message "release: $VERSION"
# publish
git push origin refs/tags/v$VERSION
git push
npm publish
fi
|