mirror of
https://github.com/anomalyco/opencode.git
synced 2026-02-01 22:48:16 +00:00
21 lines
452 B
JSON
21 lines
452 B
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"globalEnv": ["CI", "OPENCODE_DISABLE_SHARE"],
|
|
"globalPassThroughEnv": ["CI", "OPENCODE_DISABLE_SHARE"],
|
|
"tasks": {
|
|
"typecheck": {},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"opencode#test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"@opencode-ai/app#test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|