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 1dd3b78 commit cbb6b22Copy full SHA for cbb6b22
.gitignore
@@ -3,3 +3,4 @@ dist
3
node_modules
4
.vscode-test/
5
*.vsix
6
+.task
Taskfile.yml
@@ -0,0 +1,25 @@
1
+version: '3'
2
+
+tasks:
+ test:
+ desc: Run tests
+ cmds:
7
+ - yarn run test
8
9
+ lint:
10
+ desc: Run linter checks
11
12
+ - yarn run lint
13
14
+ package:
15
+ desc: Package extension into a .vsix file
16
+ preconditions:
17
+ - sh: command -v vsce
18
+ msg: "vcse is required to package/publish\nhttps://code.visualstudio.com/api/working-with-extensions/publishing-extension"
19
+ sources:
20
+ - src/**/*
21
+ - package.json
22
+ generates:
23
+ - "*.vsix"
24
25
+ - vsce package --yarn
0 commit comments