diff --git a/build/release.sh b/build/release.sh index 2bc1b6ce..7c72a3fd 100644 --- a/build/release.sh +++ b/build/release.sh @@ -10,13 +10,19 @@ read -p "Releasing $VERSION - are you sure? (y/n)" -n 1 -r echo # (optional) move to a new line if [[ $REPLY =~ ^[Yy]$ ]] then + # build + npm run build:lib + if [[ `git status --porcelain` ]]; + then + git commit -am "[build] $VERSION" + fi + # commit npm version $VERSION --message "[release] $VERSION" # publish git push origin master git push origin refs/tags/v$VERSION - npm publish # sync dev