sfcnr/.vscode/tasks.json

60 lines
1.6 KiB
JSON
Raw Normal View History

2018-12-07 15:56:04 +00:00
{
2023-12-28 22:48:17 +00:00
"version": "2.0.0",
"tasks": [
{
"label": "build only",
"type": "shell",
"command": "sampctl package build",
"group": {
"kind": "build",
"isDefault": true
},
"isBackground": false,
"presentation": {
"reveal": "silent",
"panel": "dedicated"
},
"problemMatcher": "$sampctl"
},
{
"label": "build watcher",
"type": "shell",
"command": "sampctl package build --watch",
"group": "build",
"isBackground": true,
"presentation": {
"reveal": "silent",
"panel": "dedicated"
},
"problemMatcher": "$sampctl"
},
{
"label": "run tests",
"type": "shell",
"command": "sampctl package run",
"group": {
"kind": "test",
"isDefault": true
},
"isBackground": true,
"presentation": {
"reveal": "silent",
"panel": "dedicated"
},
"problemMatcher": "$sampctl"
},
{
"label": "run tests watcher",
"type": "shell",
"command": "sampctl package run --watch",
"group": "test",
"isBackground": true,
"presentation": {
"reveal": "silent",
"panel": "dedicated"
},
"problemMatcher": "$sampctl"
}
]
}