mirror of
https://github.com/langchain-ai/open-agent-platform.git
synced 2026-07-01 20:24:10 -04:00
23 lines
428 B
JSON
23 lines
428 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": ["**/.env"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"]
|
|
},
|
|
"lint:fix": {
|
|
"dependsOn": ["^lint:fix"]
|
|
},
|
|
"format": {
|
|
"dependsOn": ["^format"]
|
|
},
|
|
"dev": {
|
|
"dependsOn": ["^dev"]
|
|
}
|
|
}
|
|
}
|