Skip to content

Commit d3c78b8

Browse files
committed
chore: align maintenance dependencies
1 parent 2eecb50 commit d3c78b8

4 files changed

Lines changed: 11 additions & 21 deletions

File tree

eslint.config.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ function normalizeConfig(config) {
3939
if (next.rules) {
4040
next.rules = Object.fromEntries(
4141
Object.entries(next.rules).filter(([ruleName]) => {
42+
if (ruleName.startsWith('@babel/')) {
43+
return false;
44+
}
4245
if (!ruleName.startsWith('@typescript-eslint/')) {
4346
return true;
4447
}

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,32 +66,32 @@
6666
"@types/node": "^26.0.1",
6767
"@types/react": "^19.2.17",
6868
"@types/react-dom": "^19.2.3",
69-
"@typescript-eslint/eslint-plugin": "^8.62.0",
70-
"@typescript-eslint/parser": "^8.62.0",
69+
"@typescript-eslint/eslint-plugin": "^8.62.1",
70+
"@typescript-eslint/parser": "^8.62.1",
7171
"@umijs/fabric": "^4.0.1",
7272
"cross-env": "^10.1.0",
73-
"dumi": "^2.4.35",
73+
"dumi": "^2.4.38",
7474
"eslint": "^9.39.4",
7575
"eslint-config-prettier": "^10.1.8",
76-
"eslint-plugin-jest": "^29.15.3",
76+
"eslint-plugin-jest": "^29.15.4",
7777
"eslint-plugin-react": "^7.37.5",
7878
"eslint-plugin-react-hooks": "^7.1.1",
7979
"eslint-plugin-unicorn": "^65.0.1",
80-
"father": "^4.6.23",
80+
"father": "^4.6.24",
8181
"gh-pages": "^6.3.0",
8282
"husky": "^9.1.7",
8383
"less": "^4.6.7",
8484
"lint-staged": "^17.0.8",
85-
"prettier": "^3.9.0",
85+
"prettier": "^3.9.4",
8686
"rc-test": "^7.1.3",
8787
"react": "^19.2.7",
8888
"react-dom": "^19.2.7",
8989
"regenerator-runtime": "^0.14.1",
9090
"typescript": "^6.0.3"
9191
},
9292
"peerDependencies": {
93-
"react": ">=18.0.0",
94-
"react-dom": ">=18.0.0"
93+
"react": "^19.2.7",
94+
"react-dom": "^19.2.7"
9595
},
9696
"publishConfig": {
9797
"access": "public"

react-compat.d.ts

Lines changed: 0 additions & 12 deletions
This file was deleted.

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
"module": "ESNext"
3838
},
3939
"include": [
40-
"react-compat.d.ts",
4140
"global.d.ts",
4241
".dumirc.ts",
4342
".fatherrc.ts",

0 commit comments

Comments
 (0)