Skip to content

Commit e1c1495

Browse files
authored
Merge pull request #3662 from Tyriar/tyriar/faster_tasks
Make vscode tasks faster on reload
2 parents 0f15a78 + f5ccf75 commit e1c1495

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.vscode/tasks.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"problemMatcher": []
1919
},
2020
{
21+
"label": "watch",
2122
"type": "npm",
2223
"script": "watch",
2324
"group": "build",
@@ -28,9 +29,10 @@
2829
}
2930
},
3031
{
32+
"label": "start",
3133
"type": "npm",
3234
"script": "start",
33-
"dependsOn": "npm: watch",
35+
"dependsOn": "watch",
3436
"group": "build",
3537
"isBackground": true,
3638
"problemMatcher": [],
@@ -40,7 +42,7 @@
4042
},
4143
{
4244
"label": "Start demo",
43-
"dependsOn": "npm: start",
45+
"dependsOn": "start",
4446
"group": {
4547
"kind": "build",
4648
"isDefault": true

0 commit comments

Comments
 (0)