c4b8eac8c3
- Change outputs from dist/** to .next/** (Next.js default) - Keep POSTHOG_API_KEY and FREE_TIER_AMOUNT to silence Vercel warnings - Add NEXT_PUBLIC_POSTHOG_KEY and NEXT_PUBLIC_POSTHOG_HOST for correct Turborepo cache invalidation
26 lines
656 B
JSON
26 lines
656 B
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"globalEnv": ["CI", "KILO_DISABLE_SHARE"],
|
|
"globalPassThroughEnv": ["CI", "KILO_DISABLE_SHARE"],
|
|
"tasks": {
|
|
"typecheck": {},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"opencode#test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"@opencode-ai/app#test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"@kilocode/kilo-docs#build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**"],
|
|
"env": ["POSTHOG_API_KEY", "FREE_TIER_AMOUNT", "NEXT_PUBLIC_POSTHOG_KEY", "NEXT_PUBLIC_POSTHOG_HOST"]
|
|
}
|
|
}
|
|
}
|