Skip to content

Commit

Permalink
Upgrade to task version 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Oct 8, 2017
1 parent df8447d commit 97e2194
Showing 1 changed file with 28 additions and 25 deletions.
53 changes: 28 additions & 25 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,30 @@
{
// 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,
"tasks": [
{
"taskName": "install",
"args": ["install"]
},
{
"taskName": "update",
"args": ["update"]
},
{
"taskName": "test",
"args": ["run", "test"]
},
{
"taskName": "which",
"args": ["run", "which"]
}
]
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$tsc"
},
{
"type": "npm",
"script": "test-ts",
"group": {
"kind": "test",
"isDefault": true
}
},
{
"label": "Clean Build",
"type": "npm",
"script": "clean-build",
"problemMatcher": []
}
]
}

0 comments on commit 97e2194

Please sign in to comment.