|
|
@@ -6,28 +6,28 @@ 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 ..."
|
|
|
+ echo "Releasing $VERSION ..."
|
|
|
|
|
|
- # lint and test
|
|
|
- npm run lint 2>/dev/null
|
|
|
- npm run unit 2>/dev/null
|
|
|
- npm run cover 2>/dev/null
|
|
|
+ # lint and test
|
|
|
+ npm run lint 2>/dev/null
|
|
|
+ npm run unit 2>/dev/null
|
|
|
+ npm run cover 2>/dev/null
|
|
|
|
|
|
- # build
|
|
|
- VERSION=$VERSION npm run build
|
|
|
+ # build
|
|
|
+ VERSION=$VERSION npm run build
|
|
|
|
|
|
- # e2e
|
|
|
- npm run e2e 2>/dev/null
|
|
|
- # sauce
|
|
|
- npm run sauce-all 2>/dev/null
|
|
|
+ # e2e
|
|
|
+ npm run e2e 2>/dev/null
|
|
|
+ # sauce
|
|
|
+ npm run sauce-all 2>/dev/null
|
|
|
|
|
|
- # commit
|
|
|
- git add -A
|
|
|
- git commit -m "[build] $VERSION"
|
|
|
- npm version $VERSION --message "[release] $VERSION"
|
|
|
+ # commit
|
|
|
+ git add -A
|
|
|
+ git commit -m "[build] $VERSION"
|
|
|
+ npm version $VERSION --message "[release] $VERSION"
|
|
|
|
|
|
- # publish
|
|
|
- git push origin refs/tags/v$VERSION
|
|
|
- git push
|
|
|
- npm publish
|
|
|
+ # publish
|
|
|
+ git push origin refs/tags/v$VERSION
|
|
|
+ git push
|
|
|
+ npm publish
|
|
|
fi
|