chore: update task group configuration and add parallel build task
This commit is contained in:
parent
3153644398
commit
96b6e34583
1 changed files with 15 additions and 2 deletions
15
.vscode/tasks.json
vendored
15
.vscode/tasks.json
vendored
|
|
@ -11,7 +11,10 @@
|
||||||
"--release",
|
"--release",
|
||||||
"--dart-define-from-file=.env/flutter_defines.json"
|
"--dart-define-from-file=.env/flutter_defines.json"
|
||||||
],
|
],
|
||||||
"group": "build",
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
},
|
||||||
"problemMatcher": []
|
"problemMatcher": []
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -39,6 +42,16 @@
|
||||||
],
|
],
|
||||||
"group": "build",
|
"group": "build",
|
||||||
"problemMatcher": []
|
"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": []
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue