We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 318cff9 commit 4a0530eCopy full SHA for 4a0530e
ci/git-release.sh
@@ -10,8 +10,7 @@ if [ `git branch | grep tmp-release` ]; then
10
fi
11
git checkout -b tmp-release
12
13
-npm install
14
-npm run build
+npm install && npm run build
15
git add -f lib/
16
git commit -m "Release v$CURRENT_VERSION"
17
git tag "v$CURRENT_VERSION"
ci/npm-release.sh
@@ -1,5 +1,4 @@
1
#! bin/bash
2
set -e -u
3
4
-npm run prepare
5
-npm publish
+npm install && npm run build && npm publish
0 commit comments