mirror of
https://github.com/langchain-ai/langgraphjs-api.git
synced 2026-07-01 13:58:12 -04:00
27 lines
468 B
JSON
27 lines
468 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"format": {
|
|
"dependsOn": ["^format"]
|
|
},
|
|
"format:check": {
|
|
"dependsOn": ["^format:check"]
|
|
},
|
|
"test": {
|
|
"cache": false,
|
|
"dependsOn": ["^build", "build"]
|
|
},
|
|
"clean": {
|
|
"dependsOn": ["^clean"]
|
|
},
|
|
"precommit": {},
|
|
"start": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|