mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
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
This commit is contained in:
parent
f1d69f02fb
commit
328d40dc4a
2 changed files with 6 additions and 2 deletions
|
|
@ -3,6 +3,7 @@
|
|||
"ignore": [
|
||||
"**/__tests__/**",
|
||||
"apps/vscode-e2e/**",
|
||||
"apps/docs/**",
|
||||
"src/extension/api.ts",
|
||||
"src/activate/**",
|
||||
"src/workers/countTokens.ts",
|
||||
|
|
|
|||
|
|
@ -2,15 +2,18 @@
|
|||
"$schema": "https://turbo.build/schema.json",
|
||||
"tasks": {
|
||||
"lint": {},
|
||||
"check-types": {},
|
||||
"check-types": {
|
||||
"dependsOn": ["^build"]
|
||||
},
|
||||
"test": {
|
||||
"dependsOn": ["@roo-code/types#build"]
|
||||
"dependsOn": ["^build"]
|
||||
},
|
||||
"format": {},
|
||||
"clean": {
|
||||
"cache": false
|
||||
},
|
||||
"build": {
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": ["dist/**", "build/**", ".docusaurus/**"],
|
||||
"inputs": [
|
||||
"src/**",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue