Skip to content

Commit

Permalink
fix: remove references to legacy
Browse files Browse the repository at this point in the history
  • Loading branch information
Cahllagerfeld committed Nov 29, 2024
1 parent f56cb83 commit ca5bdee
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,4 @@ dist-ssr
pnpm-lock.yaml
yarn.lock

legacy
scripts/types.js
2 changes: 0 additions & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,3 @@ dist-ssr

pnpm-lock.yaml
yarn.lock

legacy
2 changes: 1 addition & 1 deletion scripts/check-links.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down

0 comments on commit ca5bdee

Please sign in to comment.