Files
friflex_flutter_starter/.vscode/tasks.json
petrovyuri 17d096baac init
2025-01-21 14:24:31 +03:00

42 lines
1.0 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"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": []
}
]
}