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 8d919bc commit aea267fCopy full SHA for aea267f
Makefile
@@ -43,20 +43,23 @@ q test-quick:
43
build:
44
npm run build
45
46
-# Build and install the extension globally.
+# Global install.
47
e ext:
48
- npm run lint:check
+ npm run checks
49
npm run ext
50
51
### Deploy
52
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
-
58
login:
59
npx vsce login $(PUBLISHER_NAME)
60
+# Increment tag, publish to Marketplace, then install globally.
61
publish:
62
npx vsce publish minor
+ npm run ext
+
+# Tag and push to GitHub, then install globally. Not used so much since
+# publishing is set up.
63
+tag:
64
+ npm version minor
65
0 commit comments