monorepo-microservice-rbac/.vscode/tasks.json

152 lines
2.7 KiB
JSON
Raw Normal View History

2023-09-07 13:12:13 +08:00
{
"version": "2.0.0",
"tasks": [
{
"label": "start-all-tasks",
"dependsOn": [
"build:pkg",
"cert-authorize",
"cert-authenticate",
"cert-gateway",
"cert-web",
"aorta-web",
"aorta-gateway",
"dmp-archive",
"dmp-web",
"dmp-gateway",
"dicom",
"logger"
]
},
{
"label": "build:pkg",
"type": "shell",
"command": "bash",
"args": [
"-c",
"for package in @tavi/util @tavi/oss @tavi/i18n; do (pnpm run --filter $package build); done && echo 'build:pkg completed'"
]
},
{
"label": "aorta-web",
"type": "shell",
"command": "pnpm",
"args": [
"dev:aorta-web",
],
"dependsOn": [
"build:pkg"
]
},
{
"label": "aorta-gateway",
"type": "shell",
"command": "pnpm",
"args": [
"dev:aorta-gateway",
],
"dependsOn": [
"build:pkg"
]
},
{
"label": "dmp-archive",
"type": "shell",
"command": "pnpm",
"args": [
"dev:dmp-archive",
],
"dependsOn": [
"build:pkg"
]
},
{
"label": "dmp-gateway",
"type": "shell",
"command": "pnpm",
"args": [
"dev:dmp-gateway",
],
"dependsOn": [
"build:pkg"
]
},
{
"label": "dmp-web",
"type": "shell",
"command": "pnpm",
"args": [
"dev:dmp-web",
],
"dependsOn": [
"build:pkg"
]
},
{
"label": "logger",
"type": "shell",
"command": "pnpm",
"args": [
"dev:logger",
],
"dependsOn": [
"build:pkg"
]
},
{
"label": "dicom",
"type": "shell",
"command": "pnpm",
"args": [
"dev:dicom",
],
"dependsOn": [
"build:pkg"
]
},
{
"label": "cert-authorize",
"type": "shell",
"command": "pnpm",
"args": [
"dev:authorize",
],
"dependsOn": [
"build:pkg"
]
},
{
"label": "cert-authenticate",
"type": "shell",
"command": "pnpm",
"args": [
"dev:authenticate"
],
"dependsOn": [
"build:pkg"
]
},
{
"label": "cert-gateway",
"type": "shell",
"command": "pnpm",
"args": [
"dev:cert-gateway"
],
"dependsOn": [
"build:pkg"
]
},
{
"label": "cert-web",
"type": "shell",
"command": "pnpm",
"args": [
"dev:cert-web"
],
"dependsOn": [
"build:pkg"
]
},
]
}