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

37 lines
808 B
JSON
Raw Permalink Normal View History

2022-10-01 18:59:01 +02:00
{
"version": "2.0.0",
"tasks": [
{
"label": "all",
2022-10-16 18:32:36 +02:00
"dependsOn": ["root", "gql_github", "gql_gitlab", "github_trending"]
2022-10-01 18:59:01 +02:00
},
{
2022-10-16 18:32:36 +02:00
"label": "root",
2022-10-01 18:59:01 +02:00
"type": "dart",
"command": "dart",
"args": ["run", "build_runner", "watch"]
},
{
2022-10-16 18:32:36 +02:00
"label": "gql_github",
2022-10-01 18:59:01 +02:00
"type": "dart",
"command": "dart",
"cwd": "packages/gql_github",
"args": ["run", "build_runner", "watch"]
},
{
2022-10-16 18:32:36 +02:00
"label": "gql_gitlab",
2022-10-01 18:59:01 +02:00
"type": "dart",
"command": "dart",
"cwd": "packages/gql_gitlab",
"args": ["run", "build_runner", "watch"]
2022-10-16 18:32:36 +02:00
},
{
"label": "github_trending",
"type": "dart",
"command": "dart",
"cwd": "packages/github_trending",
"args": ["run", "build_runner", "watch"]
2022-10-01 18:59:01 +02:00
}
]
}