chore: Update vscode task to kill previous instance (#2379)

This commit is contained in:
Dermot Duffy
2026-02-28 20:45:28 -08:00
committed by GitHub
parent ea86ad0016
commit 5dc5e45631
2 changed files with 51 additions and 3 deletions
+5 -3
View File
@@ -3,8 +3,9 @@
"tasks": [
{
"label": "Rollup",
"type": "npm",
"script": "start",
"type": "shell",
"command": "${workspaceFolder}/.vscode/run-once.sh",
"args": ["/tmp/advanced-camera-card-rollup.pid", "10001", "yarn", "start"],
"problemMatcher": {
"pattern": [
{
@@ -22,7 +23,8 @@
},
"isBackground": true,
"runOptions": {
"runOn": "folderOpen"
"runOn": "folderOpen",
"instanceLimit": 1
}
}
]