All checks were successful
Linting and tests / Linting (push) Successful in 5s
32 lines
918 B
JSON
32 lines
918 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Run bunkerd debug build",
|
|
"type": "shell",
|
|
"command": "task server:localdev:bunkerd:down; task server:localdev:bunkerd:up-debug",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"presentation": {
|
|
// Do not open terminal every time debug is launched.
|
|
"reveal": "silent"
|
|
}
|
|
},
|
|
{
|
|
"label": "Stop bunkerd debug build",
|
|
"type": "shell",
|
|
"command": "task server:localdev:bunkerd:down-debug",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"presentation": {
|
|
// Do not open terminal every time debug is launched.
|
|
"reveal": "silent"
|
|
}
|
|
}
|
|
]
|
|
}
|