Add task build command

This commit is contained in:
Jan Bader 2021-12-11 22:07:09 +00:00
parent c3a93377d9
commit 1f2d81f173

11
.vscode/tasks.json vendored
View File

@ -4,14 +4,21 @@
"version": "2.0.0", "version": "2.0.0",
"tasks": [ "tasks": [
{ {
"label": "earthly +run", "label": "task watch +run",
"type": "shell", "type": "shell",
"command": "earthly +run", "command": "task -w run",
"problemMatcher": [], "problemMatcher": [],
"group": { "group": {
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true
} }
},
{
"label": "earthly +run",
"type": "shell",
"command": "earthly +run",
"problemMatcher": [],
"group": "build"
} }
] ]
} }