From 0c1a9263048915b04afd04e87d67457da84077b6 Mon Sep 17 00:00:00 2001 From: gcwill70 Date: Sat, 9 Sep 2023 17:06:38 -0400 Subject: [PATCH] improve zip task --- .vscode/tasks.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index cf7357e..e9e4a83 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -2,10 +2,12 @@ "version": "2.0.0", "tasks": [ { + "label": "npm - build:dev", "type": "npm", "script": "build:dev" }, { + "label": "npm - build:prod", "type": "npm", "script": "build:prod" }, @@ -13,6 +15,7 @@ "type": "shell", "label": "zip", "command": "zip", + "dependsOn": "npm - build:prod", "args": ["-r", "~/Downloads/FillHistory-${input:version}.zip", "dist/"], "problemMatcher": [] }