sfcnr/.vscode/tasks.json
2023-12-29 01:48:17 +03:00

60 lines
1.6 KiB
JSON

{
"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"
}
]
}