mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
43 lines
1 KiB
JSON
43 lines
1 KiB
JSON
{
|
|
"baseBranch": "origin/main",
|
|
"globalDependencies": [
|
|
"package.json",
|
|
"codegen.yml",
|
|
"yarn.lock",
|
|
"jest.config.js",
|
|
"tsconfig.json",
|
|
"scripts/patch-manifests.js",
|
|
"patches/*"
|
|
],
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"build-local": {
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"@hive/app#build": {
|
|
"dependsOn": [
|
|
"^build",
|
|
"$NEXT_PUBLIC_DOCS_LINK",
|
|
"$NEXT_PUBLIC_CRISP_WEBSITE_ID",
|
|
"$NEXT_PUBLIC_GA_TRACKING_ID",
|
|
"$NEXT_PUBLIC_MIXPANEL_TOKEN",
|
|
"$NEXT_PUBLIC_STRIPE_PUBLIC_KEY"
|
|
],
|
|
"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": []
|
|
}
|
|
}
|
|
}
|