1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/.vscode/tasks.json
Sebastian Malton a8b8052d02 Replace yarn with npm for all scripts
Signed-off-by: Sebastian Malton <sebastian@malton.name>
2023-01-09 09:37:11 -05:00

20 lines
491 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"group": "build",
"command": "npm",
"args": [
"run",
"debug-build"
],
"problemMatcher": [],
"label": "compile-dev",
"detail": "Compiles main and extension types"
}
]
}