From 7ec6cb2032c51bf50a77047b7f8d674a99a830d3 Mon Sep 17 00:00:00 2001 From: Quentin Decaunes Date: Tue, 12 Mar 2019 20:03:28 +0100 Subject: [PATCH] Fixed task for vscode. --- .vscode/tasks.json | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index f10c21a..801f49c 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -10,13 +10,28 @@ }, { "type": "npm", - "script": "build", + "script": "package-win32", "problemMatcher": [] }, { "type": "npm", - "script": "package", + "script": "package-linux", + "problemMatcher": [] + }, + { + "type": "npm", + "script": "build-win32", + "problemMatcher": [] + }, + { + "type": "npm", + "script": "build-deb", + "problemMatcher": [] + }, + { + "type": "npm", + "script": "build-rpm", "problemMatcher": [] } ] -} \ No newline at end of file +}