We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d75b1e commit d2b16b4Copy full SHA for d2b16b4
lerna-publish.sh
@@ -1,3 +1,7 @@
1
#!/bin/bash
2
. .gh-token
3
-lerna publish --github-release --conventional-commits
+BUMP=$1
4
+if [ "x$BUMP" == "x" ]; then
5
+ BUMP=patch
6
+fi
7
+lerna publish --github-release --conventional-commits $BUMP
0 commit comments