Skip to content

fix: check if cwd changed to bust mapper cache #219

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/rich-icons-hope.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"eslint-import-resolver-typescript": patch
---

fix: check if cwd changed to bust mapper cache
9 changes: 8 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ let previousOptionsHash: string
let optionsHash: string
let cachedOptions: InternalResolverOptions | undefined

let prevCwd: string

let mappersCachedOptions: InternalResolverOptions
let mappers: Array<((specifier: string) => string[]) | null> | undefined

Expand Down Expand Up @@ -347,9 +349,14 @@ function getMappedPath(
}

function initMappers(options: InternalResolverOptions) {
if (mappers && mappersCachedOptions === options) {
if (
mappers &&
mappersCachedOptions === options &&
prevCwd === process.cwd()
) {
return
}
prevCwd = process.cwd()

const configPaths =
typeof options.project === 'string'
Expand Down