Skip to content

Commit 43575e7

Browse files
authored
chore: migrate stable-hash to stable-hash-x (#462)
1 parent 5db36e7 commit 43575e7

File tree

7 files changed

+1180
-1093
lines changed

7 files changed

+1180
-1093
lines changed

.changeset/nasty-doors-mix.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"eslint-import-resolver-typescript": patch
3+
---
4+
5+
chore: migrate `stable-hash` to `stable-hash-x`

.yarn/releases/yarn-4.9.1.cjs renamed to .yarn/releases/yarn-4.9.2.cjs

Lines changed: 273 additions & 279 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ plugins:
77
path: .yarn/plugins/plugin-prepare-lifecycle.cjs
88
spec: 'https://github.com/un-es/yarn-plugin-prepare-lifecycle/releases/download/v0.0.1/index.js'
99

10-
yarnPath: .yarn/releases/yarn-4.9.1.cjs
10+
yarnPath: .yarn/releases/yarn-4.9.2.cjs

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
### Patch Changes
66

7-
- [#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
7+
- [#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
88

99
## 4.4.1
1010

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
],
1111
"funding": "https://opencollective.com/eslint-import-resolver-typescript",
1212
"license": "ISC",
13-
"packageManager": "[email protected].1",
13+
"packageManager": "[email protected].2",
1414
"engines": {
1515
"node": "^16.17.0 || >=18.6.0"
1616
},
@@ -70,32 +70,32 @@
7070
},
7171
"dependencies": {
7272
"debug": "^4.4.1",
73-
"eslint-import-context": "^0.1.5",
73+
"eslint-import-context": "^0.1.8",
7474
"get-tsconfig": "^4.10.1",
7575
"is-bun-module": "^2.0.0",
76-
"stable-hash": "^0.0.5",
76+
"stable-hash-x": "^0.1.1",
7777
"tinyglobby": "^0.2.14",
78-
"unrs-resolver": "^1.7.2"
78+
"unrs-resolver": "^1.7.11"
7979
},
8080
"devDependencies": {
81-
"@1stg/common-config": "^14.0.0",
81+
"@1stg/common-config": "^14.1.0",
8282
"@changesets/changelog-github": "^0.5.1",
8383
"@changesets/cli": "^2.29.4",
8484
"@commitlint/cli": "^19.8.1",
8585
"@mozilla/glean": "^5.0.4",
86-
"@pkgr/core": "^0.2.4",
86+
"@pkgr/core": "^0.3.3",
8787
"@total-typescript/ts-reset": "^0.6.1",
8888
"@types/debug": "^4.1.12",
89-
"@types/node": "^22.15.21",
89+
"@types/node": "^22.15.30",
9090
"@types/pnpapi": "^0.0.5",
9191
"@types/unist": "^3.0.3",
92-
"@vitest/coverage-v8": "3.1.4",
92+
"@vitest/coverage-v8": "^3.2.2",
9393
"@vitest/eslint-plugin": "^1.2.1",
9494
"clean-pkg-json": "^1.3.0",
9595
"dummy.js": "link:dummy.js",
96-
"eslint": "^9.27.0",
96+
"eslint": "^9.28.0",
9797
"eslint-import-resolver-typescript": "workspace:*",
98-
"eslint-plugin-import-x": "^4.13.1",
98+
"eslint-plugin-import-x": "^4.15.1",
9999
"nano-staged": "^0.8.0",
100100
"npm-run-all2": "^8.0.4",
101101
"path-serializer": "^0.4.0",
@@ -106,10 +106,10 @@
106106
"size-limit": "^11.2.0",
107107
"size-limit-preset-node-lib": "^0.4.0",
108108
"tinyexec": "^1.0.1",
109-
"tsdown": "^0.12.3",
109+
"tsdown": "^0.12.7",
110110
"type-coverage": "^2.29.7",
111111
"typescript": "^5.8.3",
112-
"vitest": "^3.1.4",
112+
"vitest": "^3.2.2",
113113
"yarn-berry-deduplicate": "^6.1.3"
114114
},
115115
"resolutions": {

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
parseTsconfig,
1010
} from 'get-tsconfig'
1111
import { isBunBuiltin } from 'is-bun-module'
12-
import { stableHash } from 'stable-hash'
12+
import { stableHash } from 'stable-hash-x'
1313
import { ResolverFactory } from 'unrs-resolver'
1414

1515
import {

0 commit comments

Comments
 (0)