vscode/.vscode/tasks.json

220 lines
4.2 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",
2020-07-07 09:34:06 +00:00
"script": "watch-clientd",
2021-04-27 15:26:14 +00:00
"label": "Core - Build",
2020-07-07 09:34:06 +00:00
"isBackground": true,
"presentation": {
"reveal": "never",
"group": "buildWatchers"
2019-09-26 07:56:10 +00:00
},
2020-07-07 09:34:06 +00:00
"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": "watch-extensionsd",
2021-04-27 15:26:14 +00:00
"label": "Ext - Build",
2017-02-08 08:05:17 +00:00
"isBackground": true,
2017-06-27 19:44:31 +00:00
"presentation": {
"reveal": "never",
"group": "buildWatchers"
},
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": {
2020-07-07 09:34:06 +00:00
"beginsPattern": "Starting compilation",
"endsPattern": "Finished compilation"
2015-11-13 13:39:38 +00:00
}
}
},
2020-07-07 09:34:06 +00:00
{
2021-04-27 15:26:14 +00:00
"label": "VS Code - Build",
2020-07-07 09:34:06 +00:00
"dependsOn": [
2021-04-27 15:26:14 +00:00
"Core - Build",
"Ext - Build"
2020-07-07 09:34:06 +00:00
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
2020-07-07 09:34:06 +00:00
},
{
"type": "npm",
2020-07-08 11:53:39 +00:00
"script": "kill-watch-clientd",
2021-04-27 15:26:14 +00:00
"label": "Kill Core - Build",
2020-07-08 11:53:39 +00:00
"group": "build",
"presentation": {
"reveal": "never",
"group": "buildKillers"
2020-07-08 11:53:39 +00:00
},
"problemMatcher": "$tsc"
},
{
"type": "npm",
"script": "kill-watch-extensionsd",
2021-04-27 15:26:14 +00:00
"label": "Kill Ext - Build",
"group": "build",
"presentation": {
"reveal": "never",
"group": "buildKillers"
},
"problemMatcher": "$tsc"
},
2020-07-08 11:53:39 +00:00
{
2021-04-27 15:26:14 +00:00
"label": "Kill VS Code - Build",
2020-07-08 11:53:39 +00:00
"dependsOn": [
2021-04-27 15:26:14 +00:00
"Kill Core - Build",
"Kill Ext - Build"
2020-07-08 11:53:39 +00:00
],
"group": "build",
"problemMatcher": []
2020-07-08 11:53:39 +00:00
},
2020-06-29 15:43:09 +00:00
{
"type": "npm",
"script": "watch-webd",
2021-04-27 15:26:14 +00:00
"label": "Web Ext - Build",
2020-06-29 15:43:09 +00:00
"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",
2021-04-27 15:26:14 +00:00
"label": "Kill Web Ext - Build",
2020-06-29 15:43:09 +00:00
"group": "build",
"presentation": {
"reveal": "never"
2020-06-29 15:43:09 +00:00
},
"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"
}
},
{
"type": "shell",
"command": "node build/lib/preLaunch.js",
"label": "Ensure Prelaunch Dependencies",
"presentation": {
"reveal": "silent"
}
},
{
"type": "npm",
"script": "tsec-compile-check",
"problemMatcher": [
{
"base": "$tsc",
"applyTo": "allDocuments",
"owner": "tsec"
}
],
"group": "build",
"label": "npm: tsec-compile-check",
"detail": "node_modules/tsec/bin/tsec -p src/tsconfig.json --noEmit"
}
2015-11-13 13:39:38 +00:00
]
}