mirror of
https://github.com/langchain-ai/langgraphjs.git
synced 2026-07-22 09:05:28 -04:00
46 lines
970 B
JSON
46 lines
970 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": ["**/.env"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"build:internal": {
|
|
"dependsOn": ["^build:internal"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"]
|
|
},
|
|
"lint:fix": {
|
|
"dependsOn": ["^lint:fix"]
|
|
},
|
|
"format": {
|
|
"dependsOn": ["^format"]
|
|
},
|
|
"format:check": {
|
|
"dependsOn": ["^format:check"]
|
|
},
|
|
"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
|
|
}
|
|
}
|
|
}
|