Files
Construct-CN/.vscode/tasks.json
T
wed150 136d5ffa3b
/ build (push) Waiting to run
Start working at 1.2.0
2026-08-26 09:54:39 +08:00

96 lines
2.6 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "regolith: run",
"type": "shell",
"command": "regolith run",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"close": true
}
},
{
"label": "regolith: watch",
"type": "shell",
"command": "regolith watch",
"isBackground": true,
"problemMatcher": {
"pattern": [
{
"regexp": ".",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": "."
}
},
"presentation": {
"echo": true,
"close": true
}
},
{
"label": "regolith: watch preview",
"type": "shell",
"command": "regolith watch preview",
"isBackground": true,
"problemMatcher": {
"pattern": [
{
"regexp": ".",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": "."
}
},
"presentation": {
"echo": true,
"close": true
}
},
{
"label": "bake: block models",
"type": "shell",
"command": "${command:python.interpreterPath}",
"args": [
"tools/bake_block_models/main.py"
],
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"panel": "new",
"close": false
}
},
{
"label": "regolith: release",
"type": "shell",
"command": "regolith run release",
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"panel": "new",
"close": false
}
}
]
}