We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9020699 commit 0473ec8Copy full SHA for 0473ec8
1 file changed
Makefile
@@ -1,4 +1,5 @@
1
PUBLISHER_NAME = MichaelCurrin
2
+INCREMENT ?= minor
3
4
5
default: install
@@ -55,11 +56,11 @@ login:
55
56
57
# Increment tag, publish to Marketplace, then install globally.
58
publish:
- npx vsce publish minor
59
+ npx vsce publish $(INCREMENT)
60
npm run ext
61
62
# Tag and push to GitHub, then install globally. Not used so much since
63
# publishing is set up.
64
tag:
- npm version minor
65
+ npm version $(INCREMENT)
66
0 commit comments