Files
Ian Paterson fc4bdc089a
Build Snapshot Release / build (push) Has been cancelled
Release Please / release-please (push) Has been cancelled
Test / test-nix (push) Has been cancelled
Test / test-win (push) Has been cancelled
chore: contributor tooling fixes (#737)
2025-04-10 19:39:37 -07:00

52 lines
1.0 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "npm i",
"type": "shell",
"command": "cd webui && npx --yes pnpm i"
},
{
"label": "Parcel",
"type": "npm",
"script": "start",
"dependsOn": "npm i",
"isBackground": true,
"problemMatcher": {
"background": {
"activeOnStart": true,
"beginsPattern": "parcel serve",
"endsPattern": "Built in"
},
"pattern": {
"regexp": ".*"
}
},
"path": "webui"
},
{
"label": "Build Webui",
"type": "npm",
"script": "build",
"path": "webui",
"group": "build",
"problemMatcher": [],
"dependsOn": "npm i"
},
{
"label": "Terminate Parcel",
"command": "echo ${input:terminate}",
"type": "shell",
"problemMatcher": []
}
],
"inputs": [
{
"id": "terminate",
"type": "command",
"command": "workbench.action.tasks.terminate",
"args": "Parcel"
}
]
}