Files
ogre-alert/.vscode/tasks.json
2025-07-22 11:09:28 -05:00

36 lines
838 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Compile",
"type": "shell",
"command": "gulp",
"group": "build",
"presentation": {
"reveal": "silent",
"panel": "shared",
}
},
{
"label": "Package",
"type": "shell",
"command": "gulp package",
"group": "build",
"presentation": {
"reveal": "silent",
"panel": "shared",
}
},
{
"label": "Install",
"type": "shell",
"command": "make install",
"group": "build",
"presentation": {
"reveal": "silent",
"panel": "shared",
}
}
]
}