From 9c7c9631cb447cb3f49b2bd9606e91d2fcb6947d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Poumi=C3=A1n?= Date: Sun, 23 Jul 2017 16:58:05 -0600 Subject: [PATCH] Bump tasks.json version from 0.10 to 2.00. Add default build task. --- .vscode/tasks.json | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 55434a5..51bc1d5 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,15 +1,16 @@ { // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format - "version": "0.1.0", - "command": "npm", - "isShellCommand": true, - "showOutput": "always", - "suppressTaskName": true, + "version": "2.0.0", "tasks": [ { - "taskName": "build", - "args": ["run", "build"] + "taskName": "Run Build", + "type": "npm", + "script": "build", + "group": { + "kind": "build", + "isDefault": true + } } ] } \ No newline at end of file