From c6b6b2a82833f6c132d9be2ff739c4b478042f91 Mon Sep 17 00:00:00 2001 From: Lucas Tadeu Marculino Date: Mon, 24 Nov 2025 04:48:40 -0300 Subject: [PATCH] build tasks --- .vscode/tasks.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..b15ec56 --- /dev/null +++ b/.vscode/tasks.json @@ -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": [] + } +] +}