-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
56 lines (56 loc) · 1.53 KB
/
Copy pathturbo.json
File metadata and controls
56 lines (56 loc) · 1.53 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"$schema": "https://v2-8-13.turborepo.dev/schema.json",
"globalEnv": ["CI", "KILO_DISABLE_SHARE"],
"globalPassThroughEnv": ["CI", "KILO_DISABLE_SHARE"],
"tasks": {
"typecheck": {
"dependsOn": ["^typecheck"]
},
"build": {
"dependsOn": [],
"outputs": ["dist/**"]
},
"@kilocode/cli#build": {
"dependsOn": ["@kilocode/sdk#build"],
"outputs": ["dist/**"]
},
"@kilocode/cli#test": {
"dependsOn": ["^build"],
"outputs": [],
"passThroughEnv": ["*"]
},
"test:ci": {
"outputs": [".artifacts/unit/junit.xml"],
"passThroughEnv": ["*"]
},
"@kilocode/cli#test:ci": {
"dependsOn": ["^build"],
"outputs": [".artifacts/unit/junit.xml"],
"passThroughEnv": ["*"]
},
"@kilocode/kilo-gateway#test:ci": {
"outputs": [".artifacts/unit/junit.xml"]
},
"@kilocode/kilo-docs#build": {
"dependsOn": ["^build"],
"outputs": [".next/**"],
"env": ["POSTHOG_API_KEY", "FREE_TIER_AMOUNT", "NEXT_PUBLIC_POSTHOG_KEY", "NEXT_PUBLIC_POSTHOG_HOST"]
},
"@kilocode/kilo-jetbrains#build": {
"dependsOn": ["@kilocode/cli#build"],
"outputs": ["build/distributions/**"]
},
"@kilocode/kilo-jetbrains#test:ci": {
"outputs": [".artifacts/unit/junit.xml"]
},
"@opencode-ai/ui#test": {
"dependsOn": ["^build"],
"outputs": []
},
"@opencode-ai/ui#test:ci": {
"dependsOn": ["^build"],
"outputs": [".artifacts/unit/junit.xml"],
"passThroughEnv": ["*"]
}
}
}