From 96b6e345836b2566ebf1a3cd5b169446fa7493b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20M=C3=BCllner?= Date: Mon, 9 Mar 2026 19:41:51 +0100 Subject: [PATCH] chore: update task group configuration and add parallel build task --- .vscode/tasks.json | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 11930d0..754280f 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -11,7 +11,10 @@ "--release", "--dart-define-from-file=.env/flutter_defines.json" ], - "group": "build", + "group": { + "kind": "build", + "isDefault": true + }, "problemMatcher": [] }, { @@ -39,6 +42,16 @@ ], "group": "build", "problemMatcher": [] + }, + { + "label": "Flutter Build All Release (Parallel)", + "dependsOn": [ + "Flutter Build APK (Release)", + "Flutter Build App Bundle (Release)", + "Flutter Build iOS IPA (Release)" + ], + "dependsOrder": "parallel", + "problemMatcher": [] } ] -} +} \ No newline at end of file