Skip to content

Commit 03a6c2f

Browse files
committed
chore: align maintenance dependencies
1 parent b694b9e commit 03a6c2f

2 files changed

Lines changed: 14 additions & 11 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: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"prepare": "husky"
4848
},
4949
"dependencies": {
50-
"@babel/runtime": "^7.11.1",
50+
"@babel/runtime": "^7.29.7",
5151
"@rc-component/util": "^1.11.1",
5252
"clsx": "^2.1.1",
5353
"@rc-component/motion": "^1.1.4"
@@ -67,34 +67,34 @@
6767
"@types/node": "^26.0.1",
6868
"@types/react": "^19.2.17",
6969
"@types/react-dom": "^19.2.3",
70-
"@typescript-eslint/eslint-plugin": "^8.62.0",
71-
"@typescript-eslint/parser": "^8.62.0",
70+
"@typescript-eslint/eslint-plugin": "^8.62.1",
71+
"@typescript-eslint/parser": "^8.62.1",
7272
"@umijs/fabric": "^4.0.1",
7373
"@umijs/test": "^4.6.68",
7474
"cross-env": "^10.1.0",
75-
"dumi": "^2.4.35",
75+
"dumi": "^2.4.38",
7676
"eslint": "^9.39.4",
7777
"eslint-config-prettier": "^10.1.8",
78-
"eslint-plugin-jest": "^29.15.3",
78+
"eslint-plugin-jest": "^29.15.4",
7979
"eslint-plugin-react": "^7.37.5",
8080
"eslint-plugin-react-hooks": "^7.1.1",
8181
"eslint-plugin-unicorn": "^65.0.1",
82-
"father": "^4.6.23",
82+
"father": "^4.6.24",
8383
"gh-pages": "^6.3.0",
8484
"husky": "^9.1.7",
85-
"jest": "^29.7.0",
86-
"jest-environment-jsdom": "^29.7.0",
85+
"jest": "^30.4.2",
86+
"jest-environment-jsdom": "^30.4.1",
8787
"less": "^4.6.7",
8888
"lint-staged": "^17.0.8",
89-
"prettier": "^3.9.0",
89+
"prettier": "^3.9.4",
9090
"react": "^19.2.7",
9191
"react-dom": "^19.2.7",
9292
"ts-node": "^10.9.1",
9393
"typescript": "^6.0.3"
9494
},
9595
"peerDependencies": {
96-
"react": ">=16.0.0",
97-
"react-dom": ">=16.0.0"
96+
"react": "^19.2.7",
97+
"react-dom": "^19.2.7"
9898
},
9999
"publishConfig": {
100100
"access": "public"

0 commit comments

Comments
 (0)