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 756ef8d commit a27c933Copy full SHA for a27c933
.vscode/tasks.json
@@ -12,7 +12,12 @@
12
},
13
{
14
"taskName": "compile",
15
+ "isBuildCommand": true,
16
"problemMatcher": "$tsc"
- }
17
+ },
18
+ {
19
+ "taskName": "publish",
20
+ "showOutput": "always"
21
+ }
22
]
23
}
package.json
@@ -39,6 +39,8 @@
39
"scripts": {
40
"compile": "tsc -p ./src",
41
"watch": "tsc -w -p ./src",
42
+ "publish": "vsce publish",
43
+ "vscode:prepublish": "npm run compile",
44
"test": "mocha out/tests"
45
46
"contributes": {
0 commit comments