Skip to content

Commit

Permalink
refactor: replace glob w/ fast-glob in eslint plugin (#67261)
Browse files Browse the repository at this point in the history
  • Loading branch information
SukkaW committed Jun 28, 2024
1 parent bdd1d31 commit b2eafbf
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/eslint-plugin-next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dist"
],
"dependencies": {
"glob": "10.3.10"
"fast-glob": "3.3.1"
},
"devDependencies": {
"eslint": "8.56.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-next/src/utils/get-root-dirs.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { globSync } from 'glob'
import { globSync } from 'fast-glob'
import type { Rule } from 'eslint'

/**
Expand Down
23 changes: 20 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b2eafbf

Please sign in to comment.