From b1845f9f6d491c1a05bf3af37a660981f12a390e Mon Sep 17 00:00:00 2001 From: Mark Salsbery <> Date: Thu, 6 May 2021 11:53:48 -0700 Subject: [PATCH] Visual Studio Code tasks.json update to version 2.0.0 --- .vscode/tasks.json | 21 +++++++++++---------- .vscode/tasks.json.old | 25 +++++++++++++++++++++++++ 2 files changed, 36 insertions(+), 10 deletions(-) create mode 100644 .vscode/tasks.json.old diff --git a/.vscode/tasks.json b/.vscode/tasks.json index d9679e8f..c9def647 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,25 +1,26 @@ { // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format - "version": "0.1.0", + "version": "2.0.0", "command": "grunt", - "isShellCommand": true, "tasks": [ { - "taskName": "build", - "args": [], - "isBuildCommand": true, - "isWatching": false, + "label": "build", + "type": "grunt", + "task": "build", "problemMatcher": [ "$lessCompile", "$tsc", "$jshint" - ] + ], + "group": "build" }, { - "taskName": "test", - "args": [], - "isTestCommand": true + "label": "test", + "type": "grunt", + "task": "test", + "problemMatcher": [], + "group": "test" } ] } diff --git a/.vscode/tasks.json.old b/.vscode/tasks.json.old new file mode 100644 index 00000000..d9679e8f --- /dev/null +++ b/.vscode/tasks.json.old @@ -0,0 +1,25 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "0.1.0", + "command": "grunt", + "isShellCommand": true, + "tasks": [ + { + "taskName": "build", + "args": [], + "isBuildCommand": true, + "isWatching": false, + "problemMatcher": [ + "$lessCompile", + "$tsc", + "$jshint" + ] + }, + { + "taskName": "test", + "args": [], + "isTestCommand": true + } + ] +}