chore: update task group configuration and add parallel build task

This commit is contained in:
Lukas Müllner 2026-03-09 19:41:51 +01:00
parent 3153644398
commit 96b6e34583

15
.vscode/tasks.json vendored
View file

@ -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": []
}
]
}