Fixes #24073: Improve task API and adopt gulp extension to it.

This commit is contained in:
Dirk Baeumer
2017-04-06 21:11:47 +02:00
parent 0bcc6fc51c
commit ef2b0a4bfe
12 changed files with 481 additions and 363 deletions

View File

@@ -26,5 +26,23 @@
"onCommand:workbench.action.tasks.runTask",
"onCommand:workbench.action.tasks.build",
"onCommand:workbench.action.tasks.test"
]
],
"contributes": {
"configuration": {
"id": "gulp",
"type": "object",
"title": "Gulp",
"properties": {
"gulp.autoDetect": {
"type": "string",
"enum": [
"off",
"on"
],
"default": "on",
"description": "%config.gulp.autoDetect%"
}
}
}
}
}