Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
552 changes: 273 additions & 279 deletions .yarn/releases/yarn-4.9.1.cjs → .yarn/releases/yarn-4.9.2.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ plugins:
path: .yarn/plugins/plugin-prepare-lifecycle.cjs
spec: 'https://github.com/un-es/yarn-plugin-prepare-lifecycle/releases/download/v0.0.1/index.js'

yarnPath: .yarn/releases/yarn-4.9.1.cjs
yarnPath: .yarn/releases/yarn-4.9.2.cjs
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### Patch Changes

- [#459](https://github.com/import-js/eslint-import-resolver-typescript/pull/459) [`f16150b`](https://github.com/import-js/eslint-import-resolver-typescript/commit/f16150b5e10ec24a3f1f107d6322816338c50dc8) Thanks [@carlocorradini](https://github.com/carlocorradini)! - fix: always sort projects by affinity before iterating
- [#459](https://github.com/import-js/eslint-import-resolver-typescript/pull/459) [`f16150b`](https://github.com/import-js/eslint-import-resolver-typescript/commit/f16150b5e10ec24a3f1f107d6322816338c50dc8) Thanks [@carlocorradini](https://github.com/carlocorradini) and [@JounQin](https://github.com/JounQin)! - fix: always sort projects by affinity before iterating

## 4.4.1

Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
],
"funding": "https://opencollective.com/eslint-import-resolver-typescript",
"license": "ISC",
"packageManager": "[email protected].1",
"packageManager": "[email protected].2",
"engines": {
"node": "^16.17.0 || >=18.6.0"
},
Expand Down Expand Up @@ -70,32 +70,32 @@
},
"dependencies": {
"debug": "^4.4.1",
"eslint-import-context": "^0.1.5",
"eslint-import-context": "^0.1.8",
"get-tsconfig": "^4.10.1",
"is-bun-module": "^2.0.0",
"stable-hash": "^0.0.5",
"stable-hash-x": "^0.1.1",
"tinyglobby": "^0.2.14",
"unrs-resolver": "^1.7.2"
"unrs-resolver": "^1.7.11"
},
"devDependencies": {
"@1stg/common-config": "^14.0.0",
"@1stg/common-config": "^14.1.0",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.4",
"@commitlint/cli": "^19.8.1",
"@mozilla/glean": "^5.0.4",
"@pkgr/core": "^0.2.4",
"@pkgr/core": "^0.3.3",
"@total-typescript/ts-reset": "^0.6.1",
"@types/debug": "^4.1.12",
"@types/node": "^22.15.21",
"@types/node": "^22.15.30",
"@types/pnpapi": "^0.0.5",
"@types/unist": "^3.0.3",
"@vitest/coverage-v8": "3.1.4",
"@vitest/coverage-v8": "^3.2.2",
"@vitest/eslint-plugin": "^1.2.1",
"clean-pkg-json": "^1.3.0",
"dummy.js": "link:dummy.js",
"eslint": "^9.27.0",
"eslint": "^9.28.0",
"eslint-import-resolver-typescript": "workspace:*",
"eslint-plugin-import-x": "^4.13.1",
"eslint-plugin-import-x": "^4.15.1",
"nano-staged": "^0.8.0",
"npm-run-all2": "^8.0.4",
"path-serializer": "^0.4.0",
Expand All @@ -106,10 +106,10 @@
"size-limit": "^11.2.0",
"size-limit-preset-node-lib": "^0.4.0",
"tinyexec": "^1.0.1",
"tsdown": "^0.12.3",
"tsdown": "^0.12.7",
"type-coverage": "^2.29.7",
"typescript": "^5.8.3",
"vitest": "^3.1.4",
"vitest": "^3.2.2",
"yarn-berry-deduplicate": "^6.1.3"
},
"resolutions": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
parseTsconfig,
} from 'get-tsconfig'
import { isBunBuiltin } from 'is-bun-module'
import { stableHash } from 'stable-hash'
import { stableHash } from 'stable-hash-x'
import { ResolverFactory } from 'unrs-resolver'

import {
Expand Down
Loading
Loading