mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
Co-authored-by: enisdenjo <badurinadenis@gmail.com> Co-authored-by: Denis Badurina <denis@domonda.com>
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"baseBranch": "origin/main",
|
|
"globalDependencies": [
|
|
"package.json",
|
|
"codegen.yml",
|
|
"pnpm-lock.yaml",
|
|
"jest.config.js",
|
|
"tsconfig.json",
|
|
"scripts/patch-manifests.js",
|
|
"patches/*"
|
|
],
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"build-local": {
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"@hive/cdn-script#build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/worker.js"]
|
|
},
|
|
"@hive/cdn-script#build-local": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/dev.js"]
|
|
},
|
|
"@hive/app#build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"@hive/docs#build": {
|
|
"dependsOn": ["^build", "$NEXT_PUBLIC_APP_LINK", "$NEXT_PUBLIC_CRISP_WEBSITE_ID", "$NEXT_PUBLIC_GA_TRACKING_ID"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"@hive/landing-page#build": {
|
|
"dependsOn": ["^build", "$NEXT_PUBLIC_CRISP_WEBSITE_ID", "$NEXT_PUBLIC_GA_TRACKING_ID"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"typecheck": {
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|