2022-05-18 07:26:57 +00:00
|
|
|
{
|
2022-11-01 00:11:53 +00:00
|
|
|
"$schema": "https://turborepo.org/schema.json",
|
2022-05-18 07:26:57 +00:00
|
|
|
"globalDependencies": [
|
|
|
|
|
"package.json",
|
|
|
|
|
"codegen.yml",
|
2022-11-01 00:11:53 +00:00
|
|
|
"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/**"]
|
|
|
|
|
},
|
2022-10-06 11:48:01 +00:00
|
|
|
"@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": {
|
2022-09-21 10:47:40 +00:00
|
|
|
"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": [""]
|
2022-11-22 16:58:48 +00:00
|
|
|
},
|
|
|
|
|
"check:build": {
|
|
|
|
|
"outputs": [""]
|
2022-05-18 07:26:57 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|