From 625b3f4f233afbceadfad19d984a645b26548a9f Mon Sep 17 00:00:00 2001 From: Niklas Date: Wed, 22 Apr 2020 16:25:09 +0200 Subject: [PATCH] added build task to vscode --- .vscode/tasks.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index cee1abe..7e092b0 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -14,6 +14,34 @@ }, "group": "none", "problemMatcher": [] + }, + { + "label": "Build prod", + "command": "npm", + "type": "shell", + "args": [ + "run", + "buildProd" + ], + "presentation": { + "reveal": "always" + }, + "group": "none", + "problemMatcher": [] + }, + { + "label": "Build dev", + "command": "npm", + "type": "shell", + "args": [ + "run", + "build" + ], + "presentation": { + "reveal": "always" + }, + "group": "none", + "problemMatcher": [] } ] } \ No newline at end of file