Skip to content

Commit

Permalink
fix: reduce number of dependencies (#455)
Browse files Browse the repository at this point in the history
This removes 5 dependencies from the dependency tree
  • Loading branch information
benmccann authored Dec 9, 2024
1 parent 5e1201d commit 7fbb559
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 36 deletions.
91 changes: 58 additions & 33 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"estree-walker": "2.0.2",
"glob": "^7.1.3",
"graceful-fs": "^4.2.9",
"micromatch": "^4.0.8",
"node-gyp-build": "^4.2.2",
"picomatch": "^4.0.2",
"resolve-from": "^5.0.0"
},
"devDependencies": {
Expand All @@ -49,8 +49,8 @@
"@types/estree": "^0.0.47",
"@types/glob": "^7.1.2",
"@types/graceful-fs": "^4.1.5",
"@types/micromatch": "^4.0.1",
"@types/node": "^14.14.37",
"@types/picomatch": "^3.0.1",
"@vercel/git-hooks": "^1.0.0",
"@vercel/style-guide": "^5.2.0",
"analytics-node": "^3.4.0-beta.1",
Expand Down
2 changes: 1 addition & 1 deletion src/node-file-trace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
import { basename, dirname, extname, join, relative, resolve, sep } from 'path';
import analyze, { AnalyzeResult } from './analyze';
import resolveDependency, { NotFoundError } from './resolve-dependency';
import { isMatch } from 'micromatch';
import { isMatch } from 'picomatch';
import { sharedLibEmit } from './utils/sharedlib-emit';
import { CachedFileSystem } from './fs';

Expand Down

0 comments on commit 7fbb559

Please sign in to comment.