diff --git a/knip.json b/knip.json index e15c62bda1..9597061771 100644 --- a/knip.json +++ b/knip.json @@ -3,6 +3,7 @@ "ignore": [ "**/__tests__/**", "apps/vscode-e2e/**", + "apps/docs/**", "src/extension/api.ts", "src/activate/**", "src/workers/countTokens.ts", diff --git a/turbo.json b/turbo.json index ce8b1d3f5f..f6cc9ec37f 100644 --- a/turbo.json +++ b/turbo.json @@ -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/**",