Skip to content

Commit 85ec0b5

Browse files
committed
Add install task
1 parent 3d0bcc1 commit 85ec0b5

File tree

4 files changed

+11401
-11388
lines changed

4 files changed

+11401
-11388
lines changed

.vscode/tasks.json

Lines changed: 48 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,51 @@
11
// See https://go.microsoft.com/fwlink/?LinkId=733558
22
// for the documentation about the tasks.json format
33
{
4-
"version": "2.0.0",
5-
"tasks": [
6-
{
7-
"type": "npm",
8-
"script": "watch",
9-
"problemMatcher": "$ts-webpack-watch",
10-
"isBackground": true,
11-
"presentation": {
12-
"reveal": "never",
13-
"group": "watchers"
14-
},
15-
"group": {
16-
"kind": "build",
17-
"isDefault": true
18-
}
19-
},
20-
{
21-
"type": "npm",
22-
"script": "watch-tests",
23-
"problemMatcher": "$tsc-watch",
24-
"isBackground": true,
25-
"presentation": {
26-
"reveal": "never",
27-
"group": "watchers"
28-
},
29-
"group": "build"
30-
},
31-
{
32-
"label": "tasks: watch-tests",
33-
"dependsOn": [
34-
"npm: watch",
35-
"npm: watch-tests"
36-
],
37-
"problemMatcher": []
38-
}
39-
]
40-
}
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"type": "npm",
8+
"label": "npm: install",
9+
"script": "install",
10+
"runOptions": {
11+
"runOn": "folderOpen"
12+
}
13+
},
14+
{
15+
"type": "npm",
16+
"script": "watch",
17+
"problemMatcher": "$ts-webpack-watch",
18+
"isBackground": true,
19+
"presentation": {
20+
"reveal": "never",
21+
"group": "watchers"
22+
},
23+
"group": {
24+
"kind": "build",
25+
"isDefault": true
26+
},
27+
"dependsOn": [
28+
"npm: install"
29+
]
30+
},
31+
{
32+
"type": "npm",
33+
"script": "watch-tests",
34+
"problemMatcher": "$tsc-watch",
35+
"isBackground": true,
36+
"presentation": {
37+
"reveal": "never",
38+
"group": "watchers"
39+
},
40+
"group": "build"
41+
},
42+
{
43+
"label": "tasks: watch-tests",
44+
"dependsOn": [
45+
"npm: watch",
46+
"npm: watch-tests"
47+
],
48+
"problemMatcher": []
49+
}
50+
]
51+
}

0 commit comments

Comments
 (0)