Files
friflex_flutter_starter/.vscode/tasks.json

67 lines
1.7 KiB
JSON
Raw Normal View History

2025-01-21 14:24:31 +03:00
{
"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": []
},
2025-01-21 14:24:31 +03:00
{
"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": []
2025-01-21 18:59:02 +03:00
},
{
"label": "switch_to_gms",
"type": "shell",
"command": "./tools/switch_service.sh gms",
"problemMatcher": []
2025-01-21 18:59:02 +03:00
},
{
"label": "switch_to_aurora",
"type": "shell",
"command": "./tools/switch_service.sh aurora",
2025-01-21 18:59:02 +03:00
"problemMatcher": []
2025-01-21 14:24:31 +03:00
}
]
}