Skip to content

Commit 40eef1a

Browse files
committed
Update to latest pnpm and update pnpm lock
1 parent 6b6b154 commit 40eef1a

File tree

3 files changed

+24
-84
lines changed

3 files changed

+24
-84
lines changed

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
],
1111
"funding": "https://opencollective.com/unts/projects/eslint-import-resolver-ts",
1212
"license": "ISC",
13-
"packageManager": "pnpm@8.0.0",
13+
"packageManager": "pnpm@8.7.6",
1414
"engines": {
1515
"node": "^14.18.0 || >=16.0.0"
1616
},

Diff for: pnpm-lock.yaml

+21-81
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ import debug from 'debug'
55
import type { FileSystem, ResolveOptions, Resolver } from 'enhanced-resolve'
66
import enhancedResolve from 'enhanced-resolve'
77
import { hashObject } from 'eslint-module-utils/hash.js'
8-
import FastGlob from 'fast-glob'
8+
import fg from 'fast-glob'
99
import { createPathsMatcher, getTsconfig } from 'get-tsconfig'
1010
import type { TsConfigResult } from 'get-tsconfig'
1111
import isCore from 'is-core-module'
1212
import isGlob from 'is-glob'
1313

14-
const { sync: globSync } = FastGlob
14+
const { globSync } = fg
1515

1616
const IMPORTER_NAME = 'eslint-import-resolver-typescript'
1717

0 commit comments

Comments
 (0)