vscode/.vscode/tasks.json

141 lines
2.7 KiB
JSON
Raw Normal View History

2015-11-13 13:39:38 +00:00
{
"version": "2.0.0",
2015-11-13 13:39:38 +00:00
"tasks": [
{
2017-06-27 19:44:31 +00:00
"type": "npm",
"script": "watchd",
2017-06-27 19:44:31 +00:00
"label": "Build VS Code",
2019-09-26 07:56:10 +00:00
"group": {
"kind": "build",
"isDefault": true
},
2017-02-08 08:05:17 +00:00
"isBackground": true,
2017-06-27 19:44:31 +00:00
"presentation": {
"reveal": "never"
},
2015-11-13 13:39:38 +00:00
"problemMatcher": {
"owner": "typescript",
"applyTo": "closedDocuments",
"fileLocation": [
"absolute"
],
2015-11-13 13:39:38 +00:00
"pattern": {
"regexp": "Error: ([^(]+)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\): (.*)$",
2015-11-13 13:39:38 +00:00
"file": 1,
"location": 2,
"message": 3
},
"background": {
"beginsPattern": "\\[watch-client\\].*Starting compilation",
"endsPattern": "\\[watch-client\\].*Finished compilation"
2015-11-13 13:39:38 +00:00
}
}
},
{
"type": "npm",
"script": "kill-watchd",
"label": "Kill Build VS Code",
"group": "build",
"presentation": {
"reveal": "never"
},
"problemMatcher": "$tsc"
},
2020-06-29 15:43:09 +00:00
{
"type": "npm",
"script": "watch-webd",
"label": "Build Web Extensions",
"group": "build",
"isBackground": true,
"presentation": {
"reveal": "never"
},
"problemMatcher": {
"owner": "typescript",
"applyTo": "closedDocuments",
"fileLocation": [
"absolute"
],
"pattern": {
"regexp": "Error: ([^(]+)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\): (.*)$",
"file": 1,
"location": 2,
"message": 3
},
"background": {
"beginsPattern": "Starting compilation",
"endsPattern": "Finished compilation"
}
}
},
{
"type": "npm",
"script": "kill-watch-webd",
"label": "Kill Build Web Extensions",
"group": "build",
"presentation": {
"reveal": "never",
},
"problemMatcher": "$tsc"
},
{
2017-11-07 10:53:59 +00:00
"label": "Run tests",
"type": "shell",
"command": "./scripts/test.sh",
"windows": {
"command": ".\\scripts\\test.bat"
},
"group": "test",
2017-06-22 15:03:52 +00:00
"presentation": {
"echo": true,
"reveal": "always"
2016-01-14 16:53:55 +00:00
}
},
2015-11-13 13:39:38 +00:00
{
2017-11-07 10:53:59 +00:00
"label": "Run Dev",
"type": "shell",
"command": "./scripts/code.sh",
"windows": {
"command": ".\\scripts\\code.bat"
},
"problemMatcher": []
2017-02-15 10:58:33 +00:00
},
{
2019-10-17 09:32:32 +00:00
"type": "npm",
"script": "electron",
2017-06-27 19:44:31 +00:00
"label": "Download electron"
},
{
"type": "gulp",
"task": "hygiene",
"problemMatcher": []
},
2019-10-15 18:27:17 +00:00
{
"type": "shell",
2020-06-01 05:27:02 +00:00
"command": "yarn web --no-launch",
2019-10-15 18:27:17 +00:00
"label": "Run web",
"isBackground": true,
"problemMatcher": {
"pattern": {
"regexp": ""
},
"background": {
"beginsPattern": ".*node .*",
2019-10-15 18:27:17 +00:00
"endsPattern": "Web UI available at .*"
}
},
"presentation": {
"reveal": "never"
}
},
2020-01-03 09:34:42 +00:00
{
"type": "npm",
"script": "eslint",
"problemMatcher": {
"source": "eslint",
"base": "$eslint-stylish"
}
}
2015-11-13 13:39:38 +00:00
]
}