mirror of
https://github.com/anomalyco/opencode.git
synced 2026-04-26 15:55:45 +00:00
The auth command has been renamed to providers to better reflect its purpose of managing AI provider credentials. This makes it easier for users to discover and use the credential management features when configuring different AI providers.
23 lines
479 B
JSON
23 lines
479 B
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"globalEnv": ["CI", "OPENCODE_DISABLE_SHARE"],
|
|
"globalPassThroughEnv": ["CI", "OPENCODE_DISABLE_SHARE"],
|
|
"tasks": {
|
|
"typecheck": {
|
|
"dependsOn": []
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"opencode#test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"@opencode-ai/app#test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|