Files
ogre-sort/.vscode/tasks.json
Cooper Dalrymple 4b2e3194be Initial commit
2025-11-18 16:56:26 -06:00

26 lines
580 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"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",
}
}
]
}