Skip to content

Commit c844382

Browse files
authored
chore: Add yarn clean script (#373)
1 parent d0f0374 commit c844382

File tree

7 files changed

+14
-8
lines changed

7 files changed

+14
-8
lines changed

apps/docs/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"repository": "https://github.com/langchain-ai/open-agent-platform",
55
"private": true,
66
"scripts": {
7-
"dev": "mint dev --no-open"
7+
"dev": "mint dev --no-open",
8+
"clean": "rm -rf .turbo || true"
89
},
910
"devDependencies": {
1011
"mint": "^4.1.19"

apps/standalone/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"lint": "next lint",
1212
"lint:fix": "next lint --fix",
1313
"format": "prettier --write .",
14-
"format:check": "prettier --check ."
14+
"format:check": "prettier --check .",
15+
"clean": "rm -rf .next .turbo || true"
1516
},
1617
"dependencies": {
1718
"@langchain/core": "^0.3.44",

apps/web/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"lint": "next lint",
1212
"lint:fix": "next lint --fix",
1313
"format": "prettier --write .",
14-
"format:check": "prettier --check ."
14+
"format:check": "prettier --check .",
15+
"clean": "rm -rf .next .turbo || true"
1516
},
1617
"dependencies": {
1718
"@langchain/auth": "^0.0.0",

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"format": "turbo format",
1414
"format:check": "turbo format:check",
1515
"lint": "turbo lint",
16-
"lint:fix": "turbo lint:fix"
16+
"lint:fix": "turbo lint:fix",
17+
"clean": "turbo clean"
1718
},
1819
"devDependencies": {
1920
"turbo": "^2.5.0",

packages/deep-agent-chat/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"lint:fix": "eslint . --fix",
1616
"type-check": "tsc --noEmit",
1717
"format": "prettier --write .",
18-
"format:check": "prettier --check ."
18+
"format:check": "prettier --check .",
19+
"clean": "rm -rf .turbo || true"
1920
},
2021
"dependencies": {
2122
"@langchain/langgraph-sdk": "^0.0.109",
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"extends": ["//"],
33
"tasks": {
4-
"build:internal": {
5-
"outputs": []
6-
}
4+
"build:internal": {}
75
}
86
}

turbo.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
},
2121
"dev": {
2222
"dependsOn": ["^dev"]
23+
},
24+
"clean": {
25+
"dependsOn": ["^clean"]
2326
}
2427
}
2528
}

0 commit comments

Comments
 (0)