mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-17 12:56:41 +02:00
9dbf3a2042
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": []
|
|
}
|
|
}
|
|
}
|