Skip to content

Commit df357ab

Browse files
committed
chore: align maintenance dependencies
1 parent a506f10 commit df357ab

2 files changed

Lines changed: 11 additions & 8 deletions

File tree

eslint.config.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ function normalizeConfig(config) {
4848
if (next.rules) {
4949
next.rules = Object.fromEntries(
5050
Object.entries(next.rules).filter(([ruleName]) => {
51+
if (ruleName.startsWith('@babel/')) {
52+
return false;
53+
}
5154
if (!ruleName.startsWith('@typescript-eslint/')) {
5255
return true;
5356
}

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69,33 +69,33 @@
6969
"@types/node": "^26.0.1",
7070
"@types/react": "^19.2.17",
7171
"@types/react-dom": "^19.2.3",
72-
"@typescript-eslint/eslint-plugin": "^8.62.0",
73-
"@typescript-eslint/parser": "^8.62.0",
72+
"@typescript-eslint/eslint-plugin": "^8.62.1",
73+
"@typescript-eslint/parser": "^8.62.1",
7474
"@umijs/fabric": "^4.0.1",
7575
"bootstrap": "^5.3.7",
76-
"dumi": "^2.4.35",
76+
"dumi": "^2.4.38",
7777
"eslint": "^9.39.4",
7878
"eslint-config-prettier": "^10.1.8",
79-
"eslint-plugin-jest": "^29.15.3",
79+
"eslint-plugin-jest": "^29.15.4",
8080
"eslint-plugin-react": "^7.37.5",
8181
"eslint-plugin-react-hooks": "^7.1.1",
8282
"eslint-plugin-unicorn": "^65.0.1",
83-
"father": "^4.6.23",
83+
"father": "^4.6.24",
8484
"gh-pages": "^6.3.0",
8585
"glob": "^13.0.6",
8686
"husky": "^9.1.7",
8787
"less": "^4.6.7",
8888
"lint-staged": "^17.0.8",
89-
"prettier": "^3.9.0",
89+
"prettier": "^3.9.4",
9090
"rc-test": "^7.1.3",
9191
"react": "^19.2.7",
9292
"react-dom": "^19.2.7",
9393
"react-draggable": "^4.4.3",
9494
"typescript": "^6.0.3"
9595
},
9696
"peerDependencies": {
97-
"react": ">=18.0.0",
98-
"react-dom": ">=18.0.0"
97+
"react": "^19.2.7",
98+
"react-dom": "^19.2.7"
9999
},
100100
"publishConfig": {
101101
"access": "public"

0 commit comments

Comments
 (0)