Skip to content

Commit 0473ec8

Browse files
committed
build: update Makefile
1 parent 9020699 commit 0473ec8

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Makefile

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

34

45
default: install
@@ -55,11 +56,11 @@ login:
5556

5657
# Increment tag, publish to Marketplace, then install globally.
5758
publish:
58-
npx vsce publish minor
59+
npx vsce publish $(INCREMENT)
5960
npm run ext
6061

6162
# Tag and push to GitHub, then install globally. Not used so much since
6263
# publishing is set up.
6364
tag:
64-
npm version minor
65+
npm version $(INCREMENT)
6566
npm run ext

0 commit comments

Comments
 (0)