mantra/.vscode/tasks.json

131 lines
3.8 KiB
JSON
Raw Normal View History

2019-10-07 21:20:38 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Debug",
"type": "npm",
"script": "build",
2021-05-10 20:46:32 +00:00
"problemMatcher": [
"$gulp-tsc",
"$node-sass"
]
2019-10-07 21:20:38 +00:00
},
{
"label": "Release",
"type": "npm",
"script": "release",
"group": "build",
2021-05-10 20:46:32 +00:00
"problemMatcher": [
"$gulp-tsc",
"$node-sass"
]
2019-10-07 21:20:38 +00:00
},
{
"label": "Watch Debug",
"type": "npm",
"script": "watch",
"group": {
"kind": "build",
"isDefault": true
},
2021-05-10 20:46:32 +00:00
"problemMatcher": [
{
"base": "$gulp-tsc",
"background": {
2021-05-11 17:14:40 +00:00
"activeOnStart": true,
"beginsPattern": "(Starting compilation in watch mode|File change detected. Starting incremental compilation)",
"endsPattern": "Found \\d+ errors. Watching for file changes."
2021-05-10 20:46:32 +00:00
}
},
{
"base": "$node-sass",
"background": {
2021-05-11 17:14:40 +00:00
"activeOnStart": true,
2021-05-11 19:54:42 +00:00
"beginsPattern": "Building scss-code.",
"endsPattern": "Building scss-code finished."
2021-05-10 20:46:32 +00:00
}
}
],
2019-10-07 21:20:38 +00:00
"isBackground": true,
"presentation": {
"reveal": "never"
}
},
{
"label": "Watch Release",
"type": "npm",
"script": "watch-release",
"group": "build",
2021-05-10 20:46:32 +00:00
"problemMatcher": [
{
"base": "$gulp-tsc",
"background": {
"activeOnStart": false,
"beginsPattern": "^(Starting compilation in watch mode|File change detected. Starting incremental compilation)",
"endsPattern": "^Found \\d+ errors. Watching for file changes."
}
},
{
"base": "$node-sass",
"background": {
"activeOnStart": false,
2021-05-11 19:54:42 +00:00
"beginsPattern": "^Building scss-code.",
"endsPattern": "^Building scss-code finished."
2021-05-10 20:46:32 +00:00
}
}
],
2019-10-07 21:20:38 +00:00
"isBackground": true,
"presentation": {
"reveal": "never"
}
},
{
"label": "Stop Debug",
"type": "npm",
"script": "stop",
"problemMatcher": [],
"presentation": {
"reveal": "never"
}
},
{
"label": "Stop Release",
"type": "npm",
"script": "stop-release",
"problemMatcher": [],
"presentation": {
"reveal": "never"
}
},
{
"label": "Rebuild",
"type": "npm",
"script": "rebuild",
2021-05-10 20:46:32 +00:00
"problemMatcher": [
"$gulp-tsc",
"$node-sass"
]
2019-10-07 21:20:38 +00:00
},
{
"label": "Rebuild Release",
"type": "npm",
"script": "rebuild-release",
2021-05-10 20:46:32 +00:00
"problemMatcher": [
"$gulp-tsc",
"$node-sass"
]
2019-10-07 21:20:38 +00:00
},
{
"label": "Lint",
"type": "npm",
2021-05-11 00:57:03 +00:00
"script": "lint-ide",
"problemMatcher": "$eslint-stylish",
2019-10-07 21:20:38 +00:00
"presentation": {
"reveal": "never"
}
}
]
2021-05-11 00:57:03 +00:00
}