Skip to content

Commit 7bfd6bb

Browse files
committed
chore: align maintenance dependencies
1 parent 1028732 commit 7bfd6bb

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
@@ -59,32 +59,32 @@
5959
"@types/node": "^26.0.1",
6060
"@types/react": "^19.2.17",
6161
"@types/react-dom": "^19.2.3",
62-
"@typescript-eslint/eslint-plugin": "^8.62.0",
63-
"@typescript-eslint/parser": "^8.62.0",
62+
"@typescript-eslint/eslint-plugin": "^8.62.1",
63+
"@typescript-eslint/parser": "^8.62.1",
6464
"@umijs/fabric": "^4.0.1",
6565
"cheerio": "1.0.0-rc.12",
6666
"cross-env": "^10.1.0",
67-
"dumi": "^2.4.35",
67+
"dumi": "^2.4.38",
6868
"eslint": "^9.39.4",
6969
"eslint-config-prettier": "^10.1.8",
70-
"eslint-plugin-jest": "^29.15.3",
70+
"eslint-plugin-jest": "^29.15.4",
7171
"eslint-plugin-react": "^7.37.5",
7272
"eslint-plugin-react-hooks": "^7.1.1",
7373
"eslint-plugin-unicorn": "^65.0.1",
74-
"father": "^4.6.23",
74+
"father": "^4.6.24",
7575
"gh-pages": "^6.3.0",
7676
"glob": "^13.0.6",
7777
"husky": "^9.1.7",
7878
"lint-staged": "^17.0.8",
79-
"prettier": "^3.9.0",
79+
"prettier": "^3.9.4",
8080
"rc-test": "^7.1.3",
8181
"react": "^19.2.7",
8282
"react-dom": "^19.2.7",
8383
"typescript": "^6.0.3"
8484
},
8585
"peerDependencies": {
86-
"react": ">=16.9.0",
87-
"react-dom": ">=16.9.0"
86+
"react": "^19.2.7",
87+
"react-dom": "^19.2.7"
8888
},
8989
"engines": {
9090
"node": ">=8.x"

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
@@ -27,7 +27,6 @@
2727
"module": "ESNext"
2828
},
2929
"include": [
30-
"react-compat.d.ts",
3130
"global.d.ts",
3231
"src",
3332
"docs",

0 commit comments

Comments
 (0)