Skip to content

Commit f9d68ab

Browse files
committed
chore: align maintenance dependencies
1 parent 3011c54 commit f9d68ab

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
@@ -63,34 +63,34 @@
6363
"@types/node": "^26.0.1",
6464
"@types/react": "^19.2.17",
6565
"@types/react-dom": "^19.2.3",
66-
"@typescript-eslint/eslint-plugin": "^8.62.0",
67-
"@typescript-eslint/parser": "^8.62.0",
66+
"@typescript-eslint/eslint-plugin": "^8.62.1",
67+
"@typescript-eslint/parser": "^8.62.1",
6868
"@umijs/fabric": "^4.0.1",
6969
"cross-env": "^10.1.0",
70-
"dumi": "^2.4.35",
70+
"dumi": "^2.4.38",
7171
"eslint": "^9.39.4",
7272
"eslint-config-prettier": "^10.1.8",
73-
"eslint-plugin-jest": "^29.15.3",
73+
"eslint-plugin-jest": "^29.15.4",
7474
"eslint-plugin-react": "^7.37.5",
7575
"eslint-plugin-react-hooks": "^7.1.1",
7676
"eslint-plugin-unicorn": "^65.0.1",
77-
"father": "^4.6.23",
77+
"father": "^4.6.24",
7878
"father-build": "^1.18.6",
7979
"gh-pages": "^6.3.0",
8080
"glob": "^13.0.6",
8181
"husky": "^9.1.7",
8282
"less": "^4.6.7",
8383
"lint-staged": "^17.0.8",
84-
"prettier": "^3.9.0",
84+
"prettier": "^3.9.4",
8585
"rc-test": "^7.1.3",
8686
"react": "^19.2.7",
8787
"react-dom": "^19.2.7",
8888
"regenerator-runtime": "^0.14.0",
8989
"typescript": "^6.0.3"
9090
},
9191
"peerDependencies": {
92-
"react": ">=16.9.0",
93-
"react-dom": ">=16.9.0"
92+
"react": "^19.2.7",
93+
"react-dom": "^19.2.7"
9494
},
9595
"overrides": {
9696
"@babel/core": "^7.29.7"

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
@@ -36,7 +36,6 @@
3636
"module": "ESNext"
3737
},
3838
"include": [
39-
"react-compat.d.ts",
4039
"global.d.ts",
4140
".dumirc.ts",
4241
".fatherrc.ts",

0 commit comments

Comments
 (0)