Files
langgraphjs/turbo.json
T
2026-03-30 18:08:00 -07:00

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
}
}
}