From c29cd83213be521fb68cafcc6581adef5944fe94 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Sat, 23 Jul 2022 06:39:41 -0700 Subject: [PATCH] Allow start task to be restarted without killing watch --- .vscode/tasks.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index be833820..89a811b7 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -32,7 +32,6 @@ "label": "start", "type": "npm", "script": "start", - "dependsOn": "watch", "group": "build", "isBackground": true, "problemMatcher": [], @@ -42,7 +41,7 @@ }, { "label": "Start demo", - "dependsOn": "start", + "dependsOn": ["start", "watch"], "group": { "kind": "build", "isDefault": true