From ca5bdee2aadb8375e399b43c33a2686e4f1ec050 Mon Sep 17 00:00:00 2001 From: Cahllagerfeld <43843195+Cahllagerfeld@users.noreply.github.com> Date: Fri, 29 Nov 2024 13:26:51 +0000 Subject: [PATCH] fix: remove references to legacy --- .eslintignore | 1 - .prettierignore | 2 -- scripts/check-links.sh | 2 +- vite.config.ts | 2 +- 4 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.eslintignore b/.eslintignore index ce903a590..608936c7b 100644 --- a/.eslintignore +++ b/.eslintignore @@ -29,5 +29,4 @@ dist-ssr pnpm-lock.yaml yarn.lock -legacy scripts/types.js diff --git a/.prettierignore b/.prettierignore index 95f32673f..17f36bd65 100644 --- a/.prettierignore +++ b/.prettierignore @@ -28,5 +28,3 @@ dist-ssr pnpm-lock.yaml yarn.lock - -legacy diff --git a/scripts/check-links.sh b/scripts/check-links.sh index 6b67617c0..4069295e3 100644 --- a/scripts/check-links.sh +++ b/scripts/check-links.sh @@ -16,7 +16,7 @@ find_unique_urls() { } # Find unique URLs in the specified file patterns within the "src" directory -find_unique_urls src legacy | sort -u > "$output_file" +find_unique_urls src | sort -u > "$output_file" # Run the link checker script node scripts/check-links.js diff --git a/vite.config.ts b/vite.config.ts index cbfb6cca5..df4c4a7c4 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -6,7 +6,7 @@ import prefetchPlugin from "vite-plugin-bundle-prefetch"; // https://vitejs.dev/config/ export default defineConfig({ test: { - exclude: ["legacy/**/*", "node_modules/**/*", "build/**/*", "dist/**/*", "e2e-tests/**/*"] + exclude: ["node_modules/**/*", "build/**/*", "dist/**/*", "e2e-tests/**/*"] }, plugins: [svgr(), react(), prefetchPlugin()], resolve: {