From 601d8146546ff069e0936281728c3806da1598e1 Mon Sep 17 00:00:00 2001 From: OCram85 Date: Thu, 23 Dec 2021 09:53:14 +0100 Subject: [PATCH] add default tasks --- .vscode/tasks.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 5576709..6214092 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -83,6 +83,28 @@ "problemMatcher": [ "$pester" ] + }, + { + "label": "Run dev Server", + "type": "shell", + "command": [ + "hugo server --buildDrafts" + ], + "group": { + "kind": "test", + "isDefault": true + } + }, + { + "label": "Build Site", + "type": "shell", + "command": [ + "hugo" + ], + "group": { + "kind": "build", + "isDefault": true + } } ], "inputs": [