forked from Kilo-Org/kilocode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
27 lines (27 loc) · 691 Bytes
/
turbo.json
File metadata and controls
27 lines (27 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"$schema": "https://turborepo.com/schema.json",
"globalEnv": ["CI", "KILO_DISABLE_SHARE"],
"globalPassThroughEnv": ["CI", "KILO_DISABLE_SHARE"],
"tasks": {
"typecheck": {
"dependsOn": ["^build"]
},
"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"]
}
}
}