chore: update tasks

This commit is contained in:
Mattia Astorino 2017-07-05 15:00:56 +02:00
parent af926a92b4
commit 305eeb566b

75
.vscode/tasks.json vendored
View file

@ -12,55 +12,56 @@
"tasks": [ "tasks": [
{ {
"args": [ "args": [
"run" "run",
, "build" "build"
], ],
"isBuildCommand": true, "isBuildCommand": true,
"command": "npm", "command": "npm",
"dependsOn": "tsc", "dependsOn": "tsc",
"echoCommand": true, "echoCommand": true,
"isShellCommand": true, "isShellCommand": true,
"taskName": "build" "taskName": "build",
"problemMatcher": []
}, },
{ {
"linux": { "linux": {
"args": [ "args": [
"." ".",
, "-name" "-name",
, "\"*.js\"" "\"*.js\"",
, "-not" "-not",
, "-path" "-path",
, "\"./node_modules/*\"" "\"./node_modules/*\"",
, "-not" "-not",
, "-path" "-path",
, "\"./src/*\"" "\"./src/*\"",
, "-not" "-not",
, "-path" "-path",
, "\"./test/*\"" "\"./test/*\"",
, "-type" "-type",
, "f" "f",
, "-delete" "-delete"
], ],
"command": "find", "command": "find",
"isShellCommand": true "isShellCommand": true
}, },
"osx": { "osx": {
"args": [ "args": [
"." ".",
, "-name" "-name",
, "\"*.js\"" "\"*.js\"",
, "-not" "-not",
, "-path" "-path",
, "\"./node_modules/*\"" "\"./node_modules/*\"",
, "-not" "-not",
, "-path" "-path",
, "\"./src/*\"" "\"./src/*\"",
, "-not" "-not",
, "-path" "-path",
, "\"./test/*\"" "\"./test/*\"",
, "-type" "-type",
, "f" "f",
, "-delete" "-delete"
], ],
"command": "find", "command": "find",
"isShellCommand": true "isShellCommand": true
@ -71,8 +72,8 @@
}, },
{ {
"args": [ "args": [
"run" "run",
, "changelog" "changelog"
], ],
"command": "npm", "command": "npm",
"echoCommand": true, "echoCommand": true,
@ -81,8 +82,8 @@
}, },
{ {
"args": [ "args": [
"-p" "-p",
, "." "."
], ],
"command": "tsc", "command": "tsc",
"dependsOn": "clean project", "dependsOn": "clean project",