Skip to content
This repository was archived by the owner on May 15, 2026. It is now read-only.

Commit 328d40d

Browse files
committed
fix: resolve CI errors for docs migration
- Add apps/docs/** to knip ignore list (Docusaurus theme files are dynamically loaded) - Add ^build dependency to check-types, test, and build tasks in turbo.json to ensure @roo-code/types is built first
1 parent f1d69f0 commit 328d40d

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

knip.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"ignore": [
44
"**/__tests__/**",
55
"apps/vscode-e2e/**",
6+
"apps/docs/**",
67
"src/extension/api.ts",
78
"src/activate/**",
89
"src/workers/countTokens.ts",

turbo.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,18 @@
22
"$schema": "https://turbo.build/schema.json",
33
"tasks": {
44
"lint": {},
5-
"check-types": {},
5+
"check-types": {
6+
"dependsOn": ["^build"]
7+
},
68
"test": {
7-
"dependsOn": ["@roo-code/types#build"]
9+
"dependsOn": ["^build"]
810
},
911
"format": {},
1012
"clean": {
1113
"cache": false
1214
},
1315
"build": {
16+
"dependsOn": ["^build"],
1417
"outputs": ["dist/**", "build/**", ".docusaurus/**"],
1518
"inputs": [
1619
"src/**",

0 commit comments

Comments
 (0)