forked from CMU-17313Q/opencode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
47 lines (47 loc) · 1.47 KB
/
Copy pathturbo.json
File metadata and controls
47 lines (47 loc) · 1.47 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
{
"$schema": "https://v2-8-13.turborepo.dev/schema.json",
"globalEnv": ["CI", "OPENCODE_DISABLE_SHARE"],
"globalPassThroughEnv": ["CI", "OPENCODE_DISABLE_SHARE"],
"tasks": {
"typecheck": {},
"build": {
"dependsOn": [],
"outputs": ["dist/**"]
},
// "test" has no generic entry on purpose: `bun turbo test` in CI (test.yml)
// only runs the package-scoped tasks listed below, not every package's
// "test" script. Running the full suite for every package on every push
// is too slow, so most packages' tests don't run in CI at all right now.
//
// If you're changing a package that isn't listed here and it has its own
// "test" script (check its package.json), add an entry for it so your
// changes get covered, e.g.:
// "@opencode-ai/llm#test": {
// "dependsOn": ["^build"],
// "outputs": []
// },
// Only add the package(s) your change actually touches — don't add all
// of them, that defeats the point of keeping CI fast.
"opencode#test": {
"dependsOn": ["^build"],
"outputs": [],
"passThroughEnv": ["*"]
},
"@opencode-ai/core#test": {
"dependsOn": ["^build"],
"outputs": []
},
"@opencode-ai/app#test": {
"dependsOn": ["^build"],
"outputs": []
},
"@opencode-ai/ui#test": {
"dependsOn": ["^build"],
"outputs": []
},
"@opencode-ai/session-ui#test": {
"dependsOn": ["^build"],
"outputs": []
}
}
}