Skip to content

Commit 29bb20c

Browse files
committed
Adopt tasks.json to new schema
1 parent 19f310a commit 29bb20c

1 file changed

Lines changed: 10 additions & 7 deletions

File tree

.vscode/tasks.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22
"version": "2.0.0",
33
"tasks": [
44
{
5-
"customize": "vscode.npm.run watch",
6-
"taskName": "Build VS Code",
5+
"type": "npm",
6+
"script": "watch",
7+
"label": "Build VS Code",
78
"group": "build",
89
"isBackground": true,
9-
"terminal": {
10+
"presentation": {
1011
"reveal": "never"
1112
},
1213
"problemMatcher": {
@@ -28,8 +29,9 @@
2829
}
2930
},
3031
{
31-
"customize": "gulp.tslint",
32-
"taskName": "Run tslint",
32+
"type": "gulp",
33+
"task": "tslint",
34+
"label": "Run tslint",
3335
"problemMatcher": ["$tslint4"]
3436
},
3537
{
@@ -54,8 +56,9 @@
5456
}
5557
},
5658
{
57-
"customize": "gulp.electron",
58-
"taskName": "Download electron"
59+
"type": "gulp",
60+
"task": "electron",
61+
"label": "Download electron"
5962
}
6063
]
6164
}

0 commit comments

Comments
 (0)