1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/.vscode/tasks.json
Alex Culliere 05effb2395 Continue polishing debug configurations
Signed-off-by: Alex Culliere <alozhkin@mirantis.com>
2021-03-05 12:47:22 +02:00

40 lines
1.1 KiB
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "dev-server-renderer",
"group": "build",
"command": "yarn",
"args": [
"run",
"dev:renderer",
"&"
],
"isBackground": true,
"problemMatcher": {
"background": {
"activeOnStart": false,
"beginsPattern": "Compiling\\.\\.\\.$",
"endsPattern": "^No issues found\\.$"
}
}
},
{
"type": "shell",
"group": "build",
"command": "yarn",
"args": [
"debug-build"
],
"problemMatcher": [],
// "dependsOn": [
// "dev-server-renderer"
// ],
"label": "compile-dev",
"detail": "Compiles main and extension types"
}
]
}