We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e915f9f commit 073cadeCopy full SHA for 073cade
Makefile
@@ -1,5 +1,4 @@
1
PUBLISHER_NAME = MichaelCurrin
2
-INCREMENT ?= minor
3
4
5
default: install
@@ -58,12 +57,14 @@ login:
58
57
npx vsce login $(PUBLISHER_NAME)
59
60
# Increment tag, publish to Marketplace, then install globally.
61
-publish:
62
- npx vsce publish $(INCREMENT)
+publish-M:
+ npx vsce publish major
63
npm run ext
64
65
-# Tag and push to GitHub, then install globally. Not used so much since
66
-# publishing is set up.
67
-tag:
68
- npm version $(INCREMENT)
+publish-m:
+ npx vsce publish minor
+ npm run ext
+
+publish-b:
69
+ npx vsce publish patch
70
0 commit comments