From 305eeb566bc1de8704f42d478d674ccb9789071f Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Wed, 5 Jul 2017 15:00:56 +0200 Subject: [PATCH] chore: update tasks --- .vscode/tasks.json | 75 +++++++++++++++++++++++----------------------- 1 file changed, 38 insertions(+), 37 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 9dd62b1..a4f04a3 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -12,55 +12,56 @@ "tasks": [ { "args": [ - "run" - , "build" + "run", + "build" ], "isBuildCommand": true, "command": "npm", "dependsOn": "tsc", "echoCommand": true, "isShellCommand": true, - "taskName": "build" + "taskName": "build", + "problemMatcher": [] }, { "linux": { "args": [ - "." - , "-name" - , "\"*.js\"" - , "-not" - , "-path" - , "\"./node_modules/*\"" - , "-not" - , "-path" - , "\"./src/*\"" - , "-not" - , "-path" - , "\"./test/*\"" - , "-type" - , "f" - , "-delete" + ".", + "-name", + "\"*.js\"", + "-not", + "-path", + "\"./node_modules/*\"", + "-not", + "-path", + "\"./src/*\"", + "-not", + "-path", + "\"./test/*\"", + "-type", + "f", + "-delete" ], "command": "find", "isShellCommand": true }, "osx": { "args": [ - "." - , "-name" - , "\"*.js\"" - , "-not" - , "-path" - , "\"./node_modules/*\"" - , "-not" - , "-path" - , "\"./src/*\"" - , "-not" - , "-path" - , "\"./test/*\"" - , "-type" - , "f" - , "-delete" + ".", + "-name", + "\"*.js\"", + "-not", + "-path", + "\"./node_modules/*\"", + "-not", + "-path", + "\"./src/*\"", + "-not", + "-path", + "\"./test/*\"", + "-type", + "f", + "-delete" ], "command": "find", "isShellCommand": true @@ -71,8 +72,8 @@ }, { "args": [ - "run" - , "changelog" + "run", + "changelog" ], "command": "npm", "echoCommand": true, @@ -81,8 +82,8 @@ }, { "args": [ - "-p" - , "." + "-p", + "." ], "command": "tsc", "dependsOn": "clean project",