mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
58 lines
1.4 KiB
JSON
58 lines
1.4 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",
|
|
"patches/*"
|
|
],
|
|
"pipeline": {
|
|
"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/**"]
|
|
},
|
|
"@hive/docs#build": {
|
|
"dependsOn": ["^build"],
|
|
"env": ["NEXT_PUBLIC_APP_LINK", "NEXT_PUBLIC_CRISP_WEBSITE_ID", "NEXT_PUBLIC_GA_TRACKING_ID"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"@hive/landing-page#build": {
|
|
"dependsOn": ["^build"],
|
|
"env": [
|
|
"NEXT_PUBLIC_CRISP_WEBSITE_ID",
|
|
"NEXT_PUBLIC_GA_TRACKING_ID",
|
|
"NEXT_BASE_PATH",
|
|
"NEXT_PUBLIC_ALGOLIA_INDEX_NAME",
|
|
"NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY",
|
|
"NEXT_PUBLIC_ALGOLIA_APP_ID",
|
|
"SITE_URL"
|
|
],
|
|
"outputs": [".next/**", "dist/**", "!.next/cache/**"]
|
|
},
|
|
"@hive/migrations#build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"typecheck": {
|
|
"outputs": [""]
|
|
},
|
|
"check:build": {
|
|
"outputs": [""]
|
|
}
|
|
}
|
|
}
|