mirror of
https://github.com/langchain-ai/langgraphjs.git
synced 2026-07-22 00:55:26 -04:00
b470748990
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
47 lines
1000 B
JSON
47 lines
1000 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": ["**/.env"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"build:internal": {
|
|
"dependsOn": ["^build:internal"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"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
|
|
}
|
|
}
|
|
}
|