mirror of
https://github.com/langchain-ai/langgraphjs.git
synced 2026-07-23 09:35:22 -04:00
d5c8a517c3
* infra[patch]: Use latest turbo repo and build setup * bruh * fix script * try this * cr * cr * cr * cr * cr * cr * cr * new unit test * cr * drop ubuntu test env * try sum new for cache * bruh * fast fail false * cr * cr * cr * bump turbo version * tmp try canary * cr * cr * cr * cr * cr * upgrade langchain/scripts * cr * cr * cr * cr
46 lines
898 B
JSON
46 lines
898 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", "build"]
|
|
},
|
|
"test:single": {
|
|
"dependsOn": ["^build", "build"]
|
|
},
|
|
"test:int": {
|
|
"dependsOn": ["^build", "build"]
|
|
},
|
|
"test:integration": {
|
|
"dependsOn": ["^build", "build", "test:int"]
|
|
},
|
|
"clean": {
|
|
"dependsOn": ["^clean"]
|
|
},
|
|
"precommit": {},
|
|
"start": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|