Skip to content

Commit 425d42a

Browse files
chore(deps): update all non-major dependencies (#566)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Haoqun Jiang <[email protected]>
1 parent 9b9f4fb commit 425d42a

File tree

7 files changed

+342
-290
lines changed

7 files changed

+342
-290
lines changed

eslint.config.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import eslint from '@eslint/js'
44
import tseslint from 'typescript-eslint'
55
import nodePlugin from 'eslint-plugin-n'
66
import * as regexpPlugin from 'eslint-plugin-regexp'
7-
import importPlugin from 'eslint-plugin-import-x'
7+
import importPlugin, { createNodeResolver } from 'eslint-plugin-import-x'
8+
import { createTypeScriptImportResolver } from 'eslint-import-resolver-typescript'
89

910
export default tseslint.config(
1011
eslint.configs.recommended,
@@ -16,6 +17,12 @@ export default tseslint.config(
1617
plugins: {
1718
import: importPlugin,
1819
},
20+
settings: {
21+
'import-x/resolver-next': [
22+
createNodeResolver(),
23+
createTypeScriptImportResolver(),
24+
],
25+
},
1926
rules: {
2027
eqeqeq: ['warn', 'always', { null: 'never' }],
2128
'no-empty': ['warn', { allowEmptyCatch: true }],

package.json

+8-7
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,17 @@
3737
},
3838
"devDependencies": {
3939
"@babel/types": "^7.27.0",
40-
"@eslint/js": "^9.23.0",
40+
"@eslint/js": "^9.24.0",
4141
"@types/babel__core": "^7.20.5",
4242
"@types/convert-source-map": "^2.0.3",
4343
"@types/debug": "^4.1.12",
4444
"@types/fs-extra": "^11.0.4",
45-
"@types/node": "^22.13.14",
45+
"@types/node": "^22.14.0",
4646
"@vitejs/release-scripts": "^1.4.0",
4747
"conventional-changelog-cli": "^5.0.0",
48-
"eslint": "^9.23.0",
49-
"eslint-plugin-import-x": "^4.9.4",
48+
"eslint": "^9.24.0",
49+
"eslint-import-resolver-typescript": "^4.3.2",
50+
"eslint-plugin-import-x": "^4.10.2",
5051
"eslint-plugin-n": "^17.17.0",
5152
"eslint-plugin-regexp": "^2.7.0",
5253
"execa": "^9.5.2",
@@ -59,8 +60,8 @@
5960
"rollup": "^4.38.0",
6061
"simple-git-hooks": "^2.12.1",
6162
"tsx": "^4.19.3",
62-
"typescript": "^5.8.2",
63-
"typescript-eslint": "^8.28.0",
63+
"typescript": "^5.8.3",
64+
"typescript-eslint": "^8.29.1",
6465
"unbuild": "3.5.0",
6566
"vite": "catalog:",
6667
"vitest": "^3.1.1",
@@ -83,7 +84,7 @@
8384
"eslint --cache --fix"
8485
]
8586
},
86-
"packageManager": "pnpm@10.7.0",
87+
"packageManager": "pnpm@10.8.0",
8788
"pnpm": {
8889
"overrides": {
8990
"@vitejs/plugin-vue": "workspace:*"

playground/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "1.0.0",
55
"type": "module",
66
"devDependencies": {
7-
"@types/node": "^22.13.14",
7+
"@types/node": "^22.14.0",
88
"convert-source-map": "^2.0.0",
99
"css-color-names": "^1.0.1",
1010
"kill-port": "^1.6.1",

playground/tailwind/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"vue-router": "catalog:"
1717
},
1818
"devDependencies": {
19-
"@types/node": "^22.13.14",
19+
"@types/node": "^22.14.0",
2020
"@vitejs/plugin-vue": "workspace:*",
2121
"ts-node": "^10.9.2"
2222
}

playground/vue-sourcemap/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
},
1212
"devDependencies": {
1313
"@vitejs/plugin-vue": "workspace:*",
14-
"less": "^4.2.2",
14+
"less": "^4.3.0",
1515
"postcss-nested": "^7.0.2",
16-
"sass": "^1.86.0"
16+
"sass": "^1.86.3"
1717
},
1818
"dependencies": {
1919
"vue": "catalog:"

playground/vue/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
"devDependencies": {
1717
"@vitejs/plugin-vue": "workspace:*",
1818
"js-yaml": "^4.1.0",
19-
"less": "^4.2.2",
19+
"less": "^4.3.0",
2020
"pug": "^3.0.3",
21-
"sass": "^1.86.0",
21+
"sass": "^1.86.3",
2222
"stylus": "^0.64.0"
2323
}
2424
}

0 commit comments

Comments
 (0)