Files
oak-gpui/extensions/dart/languages/dart/tasks.json
T
Abdullah Alsigar bdba8b23fa dart: Add Flutter runnables and tasks (#13686)
Release Notes:

- Added runnable tasks for Flutter
2024-07-11 10:46:53 +02:00

27 lines
531 B
JSON

[
{
"label": "flutter run",
"command": "flutter",
"args": ["run"],
"tags": ["flutter-main"]
},
{
"label": "fvm flutter run",
"command": "fvm flutter",
"args": ["run"],
"tags": ["flutter-main"]
},
{
"label": "flutter test $ZED_STEM",
"command": "flutter",
"args": ["test", "$ZED_FILE"],
"tags": ["flutter-test-main"]
},
{
"label": "fvm flutter test $ZED_STEM",
"command": "fvm flutter",
"args": ["test", "$ZED_FILE"],
"tags": ["flutter-test-main"]
}
]