add build_runner build task. (⇧⌘B shows tasks)

This commit is contained in:
krawieck 2021-09-09 15:20:56 +02:00
parent 2e3ccac233
commit 822011c711
1 changed files with 21 additions and 0 deletions

21
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,21 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "flutter",
"command": "flutter",
"args": [
"pub",
"run",
"build_runner",
"build",
"--delete-conflicting-outputs"
],
"problemMatcher": [
"$dart-build_runner"
],
"group": "build",
"label": "flutter: build_runner build"
}
]
}