opencode/turbo.json

32 lines
775 B
JSON
Raw Normal View History

2025-09-17 15:33:54 +08:00
{
2026-03-05 07:49:11 +08:00
"$schema": "https://v2-8-13.turborepo.dev/schema.json",
2026-01-31 20:42:47 +08:00
"globalEnv": ["CI", "OPENCODE_DISABLE_SHARE"],
"globalPassThroughEnv": ["CI", "OPENCODE_DISABLE_SHARE"],
2025-09-17 15:33:54 +08:00
"tasks": {
"typecheck": {},
2025-09-19 17:28:46 +08:00
"build": {
2026-03-04 22:20:24 +08:00
"dependsOn": [],
2025-09-19 18:10:27 +08:00
"outputs": ["dist/**"]
2025-09-27 15:04:42 +08:00
},
2025-09-27 15:17:22 +08:00
"opencode#test": {
"dependsOn": ["^build"],
"outputs": [],
"passThroughEnv": ["*"]
2026-01-19 21:15:57 +08:00
},
"opencode#test:ci": {
"dependsOn": ["^build"],
"outputs": [".artifacts/unit/junit.xml"],
"passThroughEnv": ["*"]
},
2026-01-19 21:15:57 +08:00
"@opencode-ai/app#test": {
"dependsOn": ["^build"],
"outputs": []
},
"@opencode-ai/app#test:ci": {
"dependsOn": ["^build"],
"outputs": [".artifacts/unit/junit.xml"],
"passThroughEnv": ["*"]
2025-09-19 17:28:46 +08:00
}
2025-09-17 15:33:54 +08:00
}
}