mirror of
https://github.com/langchain-ai/langgraphjs.git
synced 2026-07-21 16:45:24 -04:00
d88f29ba25
Co-authored-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Christian Bromann <christian-bromann@users.noreply.github.com> Co-authored-by: Hunter Lovell <40191806+hntrl@users.noreply.github.com>
35 lines
772 B
JSON
35 lines
772 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": ["**/.env"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"build:internal": {
|
|
"dependsOn": ["^build:internal"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"test": {
|
|
"cache": false,
|
|
"dependsOn": ["^build:internal", "build:internal"]
|
|
},
|
|
"test:single": {
|
|
"dependsOn": ["^build:internal", "build:internal"]
|
|
},
|
|
"test:int": {
|
|
"dependsOn": ["^build:internal", "build:internal"]
|
|
},
|
|
"test:integration": {
|
|
"dependsOn": ["^build:internal", "build:internal", "test:int"]
|
|
},
|
|
"clean": {
|
|
"dependsOn": ["^clean"]
|
|
},
|
|
"precommit": {},
|
|
"start": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|