vscode/.vscode/tasks.json

223 lines
4.3 KiB
JSON
Raw Permalink Normal View History

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