Skip to content

Commit 073cade

Browse files
committed
build: update Makefile
1 parent e915f9f commit 073cade

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

Makefile

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
PUBLISHER_NAME = MichaelCurrin
2-
INCREMENT ?= minor
32

43

54
default: install
@@ -58,12 +57,14 @@ login:
5857
npx vsce login $(PUBLISHER_NAME)
5958

6059
# Increment tag, publish to Marketplace, then install globally.
61-
publish:
62-
npx vsce publish $(INCREMENT)
60+
publish-M:
61+
npx vsce publish major
6362
npm run ext
6463

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)
64+
publish-m:
65+
npx vsce publish minor
66+
npm run ext
67+
68+
publish-b:
69+
npx vsce publish patch
6970
npm run ext

0 commit comments

Comments
 (0)