opencode/turbo.json

23 lines
487 B
JSON
Raw Normal View History

2025-09-17 15:33:54 +08:00
{
"$schema": "https://turborepo.com/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": {
2026-02-24 07:13:31 +08:00
"typecheck": {
"dependsOn": ["^build"]
},
2025-09-19 17:28:46 +08:00
"build": {
2025-09-19 18:10:27 +08:00
"dependsOn": ["^build"],
"outputs": ["dist/**"]
2025-09-27 15:04:42 +08:00
},
2025-09-27 15:17:22 +08:00
"opencode#test": {
"dependsOn": ["^build"],
"outputs": []
2026-01-19 21:15:57 +08:00
},
"@opencode-ai/app#test": {
"dependsOn": ["^build"],
"outputs": []
2025-09-19 17:28:46 +08:00
}
2025-09-17 15:33:54 +08:00
}
}