git-touch-android-ios-app/.vscode/tasks.json

30 lines
591 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "all",
"dependsOn": ["json", "github", "gitlab"]
},
{
"label": "json",
"type": "dart",
"command": "dart",
"args": ["run", "build_runner", "watch"]
},
{
"label": "github",
"type": "dart",
"command": "dart",
"cwd": "packages/gql_github",
"args": ["run", "build_runner", "watch"]
},
{
"label": "gitlab",
"type": "dart",
"command": "dart",
"cwd": "packages/gql_gitlab",
"args": ["run", "build_runner", "watch"]
}
]
}