Files
friflex_flutter_starter/.vscode/tasks.json
Yuri Petrov 0351c768c4 chore(pubspec): FLUTTER-151 обновление flutter и пакетов (#33)
* chore(deps): update dependencies and SDK versions in pubspec.yaml and related files
* chore(readme): update Readme

---------

Co-authored-by: petrovyuri <petrovyuri@example.com>
2025-10-08 15:14:02 +03:00

77 lines
2.0 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "fluttergen",
"type": "shell",
"command": "/Users/yura/.pub-cache/bin/fluttergen",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always"
},
"problemMatcher": []
},
{
"label": "build_runner --delete-conflicting-outputs",
"type": "shell",
"command": "dart",
"args": [
"run",
"build_runner",
"build",
"--delete-conflicting-outputs"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always"
},
"problemMatcher": []
},
{
"label": "build_runner clean",
"type": "shell",
"command": "dart",
"args": [
"run",
"build_runner",
"clean"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always"
},
"problemMatcher": []
},
{
"label": "switch_to_gms",
"type": "shell",
"command": "./tools/switch_service.sh gms",
"problemMatcher": []
},
{
"label": "switch_to_aurora",
"type": "shell",
"command": "./tools/switch_service.sh aurora",
"problemMatcher": []
},
{
"label": "flutter gen-l10n",
"type": "shell",
"command": "flutter",
"args": [
"gen-l10n"
],
"group": "build",
"problemMatcher": [],
}
]
}