mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
52 lines
1.2 KiB
JSON
52 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"globalDependencies": [
|
|
"package.json",
|
|
"codegen.yml",
|
|
"pnpm-lock.yaml",
|
|
"tsconfig.json",
|
|
"scripts/patch-manifests.js",
|
|
"scripts/banner.js",
|
|
"scripts/runify.ts",
|
|
"scripts/templates/runify-next.ts",
|
|
"patches/*"
|
|
],
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"@hive/libraries/client#build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"@hive/cdn-script#build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"@hive/broker-script#build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"@hive/app#build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"],
|
|
"cache": false
|
|
},
|
|
"@hive/docs#build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**", "!.next/cache/**"]
|
|
},
|
|
"@hive/migrations#build": {
|
|
"dependsOn": ["^build", "@graphql-hive/client#build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"@hive/server#build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"check:build": {
|
|
"outputs": [""]
|
|
}
|
|
}
|
|
}
|