diff --git a/vscode-extensions/commons-vscode/.vscode/tasks.json b/vscode-extensions/commons-vscode/.vscode/tasks.json index 5845fa343b..ce37c7e386 100644 --- a/vscode-extensions/commons-vscode/.vscode/tasks.json +++ b/vscode-extensions/commons-vscode/.vscode/tasks.json @@ -1,23 +1,57 @@ { - "version": "0.1.0", + "version": "2.0.0", "command": "npm", - "isShellCommand": true, - "args": ["run"], - "showOutput": "always", + "args": [ + "run" + ], "tasks": [ { - "taskName": "compile", - "isBuildCommand": true + "label": "compile", + "type": "shell", + "command": "npm", + "args": [ + "run", + "compile" + ], + "problemMatcher": [], + "group": { + "_id": "build", + "isDefault": false + } }, { - "taskName": "clean" + "label": "clean", + "type": "shell", + "command": "npm", + "args": [ + "run", + "clean" + ], + "problemMatcher": [] }, { - "taskName": "lint" + "label": "lint", + "type": "shell", + "command": "npm", + "args": [ + "run", + "lint" + ], + "problemMatcher": [] }, { - "taskName": "test", - "isTestCommand": true + "label": "test", + "type": "shell", + "command": "npm", + "args": [ + "run", + "test" + ], + "problemMatcher": [], + "group": { + "_id": "test", + "isDefault": false + } } ] }