diff --git a/knip.json b/knip.json index ec586847c..90bf5da82 100644 --- a/knip.json +++ b/knip.json @@ -14,7 +14,7 @@ "project": ["src/**/*.{ts,tsx}", "scripts/**/*.{ts,mjs,cjs}", "worker/**/*.ts", "eslint-rules/**/*.mjs"], "ignore": ["src/lib/supabase/database.types.ts", "**/*mockup*", "src/app/mockups/**", "supabase/functions/**"], "ignoreDependencies": ["tailwindcss", "server-only"], - "ignoreBinaries": ["supabase", "semgrep", "gitleaks", "taskkill"], + "ignoreBinaries": ["supabase", "semgrep", "gitleaks", "taskkill", "railway"], "vitest": { "config": ["vitest.config.mts"] }, "playwright": { "config": ["playwright.config.ts", "playwright.visual.config.ts"] } } diff --git a/package-lock.json b/package-lock.json index d69ab1376..29f6f33c7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -29,6 +29,7 @@ }, "devDependencies": { "@axe-core/playwright": "^4.12.1", + "@babel/parser": "^7.29.7", "@next/bundle-analyzer": "^16.2.10", "@tailwindcss/postcss": "^4.3.2", "@testing-library/dom": "^10.4.1", diff --git a/package.json b/package.json index f5ade4773..fc4629090 100644 --- a/package.json +++ b/package.json @@ -166,6 +166,7 @@ }, "devDependencies": { "@axe-core/playwright": "^4.12.1", + "@babel/parser": "^7.29.7", "@next/bundle-analyzer": "^16.2.10", "@tailwindcss/postcss": "^4.3.2", "@testing-library/dom": "^10.4.1", diff --git a/src/components/clinical-dashboard/ClinicalDashboard.tsx b/src/components/clinical-dashboard/ClinicalDashboard.tsx deleted file mode 100644 index 4973c2930..000000000 --- a/src/components/clinical-dashboard/ClinicalDashboard.tsx +++ /dev/null @@ -1 +0,0 @@ -export { ClinicalDashboard } from "@/components/ClinicalDashboard"; diff --git a/src/components/clinical-dashboard/index.ts b/src/components/clinical-dashboard/index.ts deleted file mode 100644 index df78e0976..000000000 --- a/src/components/clinical-dashboard/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -export { ClinicalDashboard } from "./ClinicalDashboard"; -export { AnswerEmptyState, AnswerSkeleton, CopyButton } from "./answer-status"; -export { useTheme } from "./use-theme"; -export { StatusBadge, StrengthBadge } from "./badges"; -export { GuideDialog, GuideTrigger, SectionHeading, UtilityDrawer } from "./dashboard-shell"; -export { MasterSearchHeader } from "./master-search-header"; -export { DocumentSearchResultsPanel, MatchExplanationChips } from "./document-search-results"; -export type { SearchFacets } from "./document-search-results"; -export { - hasStrongRelevanceIcon, - isWeakRelevance, - QueryCoverageChips, - relevanceChipLabel, - RelevanceBadge, -} from "./relevance";