From 1f2d81f173469795f4f92a5c4ed4489b0d644b2d Mon Sep 17 00:00:00 2001 From: Jan Bader Date: Sat, 11 Dec 2021 22:07:09 +0000 Subject: [PATCH] Add task build command --- .vscode/tasks.json | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index ffb3003..9e89ddc 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -4,14 +4,21 @@ "version": "2.0.0", "tasks": [ { - "label": "earthly +run", + "label": "task watch +run", "type": "shell", - "command": "earthly +run", + "command": "task -w run", "problemMatcher": [], "group": { "kind": "build", "isDefault": true } + }, + { + "label": "earthly +run", + "type": "shell", + "command": "earthly +run", + "problemMatcher": [], + "group": "build" } ] } \ No newline at end of file