Skip to content

Commit aea267f

Browse files
committed
build: update Makefile
1 parent 8d919bc commit aea267f

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

Makefile

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,20 +43,23 @@ q test-quick:
4343
build:
4444
npm run build
4545

46-
# Build and install the extension globally.
46+
# Global install.
4747
e ext:
48-
npm run lint:check
48+
npm run checks
4949
npm run ext
5050

5151
### Deploy
5252

53-
# Run checks, tag and push (to GitHub only) then install the tagged version as clean-up.
54-
tag:
55-
npm version minor
56-
$(MAKE) ext
57-
5853
login:
5954
npx vsce login $(PUBLISHER_NAME)
6055

56+
# Increment tag, publish to Marketplace, then install globally.
6157
publish:
6258
npx vsce publish minor
59+
npm run ext
60+
61+
# Tag and push to GitHub, then install globally. Not used so much since
62+
# publishing is set up.
63+
tag:
64+
npm version minor
65+
npm run ext

0 commit comments

Comments
 (0)