Skip to content

Commit b909f57

Browse files
committed
chore: align maintenance dependencies
1 parent 584884f commit b909f57

2 files changed

Lines changed: 12 additions & 9 deletions

File tree

eslint.config.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ function normalizeConfig(config) {
5252
if (next.rules) {
5353
next.rules = Object.fromEntries(
5454
Object.entries(next.rules).filter(([ruleName]) => {
55+
if (ruleName.startsWith('@babel/')) {
56+
return false;
57+
}
5558
if (!ruleName.startsWith('@typescript-eslint/')) {
5659
return true;
5760
}

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -63,31 +63,31 @@
6363
"@types/react": "^19.2.17",
6464
"@types/react-dom": "^19.2.3",
6565
"@types/warning": "^3.0.4",
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",
69-
"dumi": "^2.4.35",
69+
"dumi": "^2.4.38",
7070
"eslint": "^9.39.4",
7171
"eslint-config-prettier": "^10.1.8",
72-
"eslint-plugin-jest": "^29.15.3",
72+
"eslint-plugin-jest": "^29.15.4",
7373
"eslint-plugin-react": "^7.37.5",
7474
"eslint-plugin-react-hooks": "^7.1.1",
7575
"eslint-plugin-unicorn": "^65.0.1",
76-
"father": "^4.6.23",
76+
"father": "^4.6.24",
7777
"glob": "^13.0.6",
7878
"husky": "^9.1.7",
79-
"jest-environment-jsdom": "^29.7.0",
79+
"jest-environment-jsdom": "^30.4.1",
8080
"less": "^4.6.7",
8181
"lint-staged": "^17.0.8",
82-
"prettier": "^3.9.0",
82+
"prettier": "^3.9.4",
8383
"rc-test": "^7.1.3",
8484
"react": "^19.2.7",
8585
"react-dom": "^19.2.7",
8686
"typescript": "^6.0.3"
8787
},
8888
"peerDependencies": {
89-
"react": ">=16.11.0",
90-
"react-dom": ">=16.11.0"
89+
"react": "^19.2.7",
90+
"react-dom": "^19.2.7"
9191
},
9292
"publishConfig": {
9393
"access": "public"

0 commit comments

Comments
 (0)