build tasks

This commit is contained in:
Lucas Tadeu Marculino 2025-11-24 04:48:40 -03:00
parent 1fc73227ce
commit c6b6b2a828

22
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,22 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Run Cordova App (electron)",
"type": "shell",
"command": "cordova run electron",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "Build Release (electron)",
"type": "shell",
"command": "cordova build electron --release --verbose",
"group": "build",
"problemMatcher": []
}
]
}