Skip to content

Commit

Permalink
Use npx; upgrade VSCode tasks to 2.0.0 format
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymholt committed Jul 30, 2017
1 parent e6a3476 commit d0f2fe5
Show file tree
Hide file tree
Showing 3 changed files with 1,214 additions and 183 deletions.
13 changes: 9 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
{
"version": "0.1.0",
"version": "2.0.0",
"command": "npm",
"runner": "terminal",
"showOutput": "always",
"suppressTaskName": true,
"tasks": [
{
"taskName": "build",
"isBuildCommand": true,
"group": {
"kind": "build",
"isDefault": true
},
"args": [
"run",
"build"
Expand All @@ -16,7 +18,10 @@
},
{
"taskName": "test",
"isTestCommand": true,
"group": {
"kind": "test",
"isDefault": true
},
"args": [
"test"
]
Expand Down
Loading

0 comments on commit d0f2fe5

Please sign in to comment.