Skip to content

Commit

Permalink
Merge pull request #143 from davidwessman/vscode-tasks
Browse files Browse the repository at this point in the history
CHORE: Updates vscode task syntax
  • Loading branch information
grosser committed Dec 31, 2023
2 parents 6ff4012 + c00732c commit deaae98
Showing 1 changed file with 30 additions and 26 deletions.
56 changes: 30 additions & 26 deletions .vscode/tasks.json
@@ -1,32 +1,36 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"version": "2.0.0",
"tasks": [
{
"taskName": "Bundle dependencies and stubs",
"command": "bundle",
"isShellCommand": true,
"isBackground": true,
"args": ["--binstubs"],
"showOutput": "silent"
},
{
"taskName": "Test",
"command": "${workspaceRoot}/bin/rake",
"isTestCommand": true,
"isShellCommand": false,
"args": [],
"showOutput": "always"
},
{
"taskName": "Benchmark",
"command": "${workspaceRoot}/bin/rake",
"isShellCommand": false,
"args": [
"benchmark"
],
"showOutput": "always"
{
"label": "Bundle dependencies and stubs",
"type": "shell",
"command": "bundle",
"args": [
"--binstubs"
],
"isBackground": true,
"problemMatcher": []
},
{
"label": "Test",
"type": "shell",
"command": "${workspaceRoot}/bin/rake",
"problemMatcher": [],
"group": {
"_id": "test",
"isDefault": false
}
},
{
"label": "Benchmark",
"type": "shell",
"command": "${workspaceRoot}/bin/rake",
"args": [
"benchmark"
],
"problemMatcher": []
}
]
}
}

0 comments on commit deaae98

Please sign in to comment.