From 396c662ef3d52b4cdbd0a923de23b87f6fdc5ae7 Mon Sep 17 00:00:00 2001 From: uh wot Date: Sat, 14 Aug 2021 14:52:02 +0200 Subject: [PATCH] added task shit --- .vscode/tasks.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..2593615 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,32 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "type": "shell", + "command": "wrangler build", + "problemMatcher": [], + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "label": "dev", + "type": "shell", + "command": "wrangler dev", + "problemMatcher": [], + "group": { + "kind": "test", + "isDefault": true + } + }, + { + "label": "publish", + "type": "shell", + "command": "wrangler publish" + } + ] +} \ No newline at end of file