Files
langgraphjs/turbo.json
T

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