console/turbo.json

58 lines
1.4 KiB
JSON
Raw Normal View History

2022-05-18 07:26:57 +00:00
{
"$schema": "https://turborepo.org/schema.json",
2022-05-18 07:26:57 +00:00
"globalDependencies": [
"package.json",
"codegen.yml",
"pnpm-lock.yaml",
2022-05-18 07:26:57 +00:00
"tsconfig.json",
"scripts/patch-manifests.js",
2022-11-11 09:17:48 +00:00
"scripts/banner.js",
2022-05-18 07:26:57 +00:00
"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"]
},
2022-11-07 13:27:19 +00:00
"@hive/broker-script#build": {
"dependsOn": ["^build"],
"outputs": ["dist/worker.js"]
},
"@hive/broker-script#build-local": {
"dependsOn": ["^build"],
"outputs": ["dist/dev.js"]
},
2022-05-18 07:26:57 +00:00
"@hive/app#build": {
"dependsOn": ["^build"],
2022-05-18 07:26:57 +00:00
"outputs": ["dist/**"]
},
"@hive/docs#build": {
2022-11-11 09:17:48 +00:00
"dependsOn": ["^build"],
"env": ["NEXT_PUBLIC_APP_LINK", "NEXT_PUBLIC_CRISP_WEBSITE_ID", "NEXT_PUBLIC_GA_TRACKING_ID"],
2022-05-18 07:26:57 +00:00
"outputs": ["dist/**"]
},
"@hive/landing-page#build": {
2022-11-11 09:17:48 +00:00
"dependsOn": ["^build"],
"env": ["NEXT_PUBLIC_CRISP_WEBSITE_ID", "NEXT_PUBLIC_GA_TRACKING_ID"],
2022-05-18 07:26:57 +00:00
"outputs": ["dist/**"]
},
"typecheck": {
2022-11-11 09:17:48 +00:00
"outputs": [""]
},
"check:build": {
"outputs": [""]
2022-05-18 07:26:57 +00:00
}
}
}