Skip to content

Commit 3c3b617

Browse files
authored
Update packages (Comcast#3823)
* Update packages * Use exact version * update router
1 parent 7dc8e42 commit 3c3b617

2 files changed

Lines changed: 43 additions & 16 deletions

File tree

biome.json

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@
9191
"noUselessConstructor": "warn",
9292
"noUselessContinue": "warn",
9393
"noUselessEmptyExport": "warn",
94+
"noUselessEscapeInRegex": "warn",
9495
"noUselessFragments": "warn",
9596
"noUselessLabel": "warn",
9697
"noUselessLoneBlockStatements": "warn",
@@ -149,11 +150,21 @@
149150
"noUnreachableSuper": "warn",
150151
"noUnsafeFinally": "warn",
151152
"noUnsafeOptionalChaining": "warn",
152-
"noUnusedFunctionParameters": "off",
153+
"noUnusedFunctionParameters": {
154+
"level": "warn",
155+
"options": {
156+
"ignoreRestSiblings": true
157+
}
158+
},
153159
"noUnusedImports": "warn",
154160
"noUnusedLabels": "warn",
155161
"noUnusedPrivateClassMembers": "warn",
156-
"noUnusedVariables": "warn",
162+
"noUnusedVariables": {
163+
"level": "warn",
164+
"options": {
165+
"ignoreRestSiblings": true
166+
}
167+
},
157168
"noVoidElementsWithChildren": "warn",
158169
"noVoidTypeReturn": "warn",
159170
"useExhaustiveDependencies": "off",
@@ -189,6 +200,21 @@
189200
"noNonNullAssertion": "off",
190201
"noParameterAssign": "off",
191202
"noParameterProperties": "warn",
203+
"noRestrictedImports": {
204+
"level": "warn",
205+
"options": {
206+
"paths": {
207+
"react": {
208+
"importNames": ["default"],
209+
"message": "Use named imports instead."
210+
},
211+
"react-dom": {
212+
"importNames": ["default"],
213+
"message": "Use named imports instead."
214+
}
215+
}
216+
}
217+
},
192218
"noRestrictedGlobals": "warn",
193219
"noShoutyConstants": "warn",
194220
"noUnusedTemplateLiteral": "warn",
@@ -270,6 +296,7 @@
270296
"noMisleadingInstantiator": "warn",
271297
"noMisplacedAssertion": "off",
272298
"noMisrefactoredShorthandAssign": "warn",
299+
"noOctalEscape": "warn",
273300
"noPrototypeBuiltins": "warn",
274301
"noReactSpecificProps": "off",
275302
"noRedeclare": "warn",

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -53,41 +53,41 @@
5353
},
5454
"devDependencies": {
5555
"@babel/preset-typescript": "^7.27.1",
56-
"@biomejs/biome": "2.0.6",
57-
"@eslint/markdown": "^6.6.0",
56+
"@biomejs/biome": "2.1.2",
57+
"@eslint/markdown": "^7.0.0",
5858
"@faker-js/faker": "^9.9.0",
59-
"@ianvs/prettier-plugin-sort-imports": "^4.4.2",
59+
"@ianvs/prettier-plugin-sort-imports": "^4.5.1",
6060
"@linaria/core": "^6.3.0",
61-
"@tanstack/react-router": "^1.121.21",
62-
"@tanstack/router-plugin": "^1.124.0",
63-
"@types/node": "^24.0.10",
61+
"@tanstack/react-router": "^1.128.0",
62+
"@tanstack/router-plugin": "^1.128.0",
63+
"@types/node": "^24.0.14",
6464
"@types/react": "^19.1.3",
6565
"@types/react-dom": "^19.1.3",
66-
"@typescript-eslint/eslint-plugin": "^8.35.1",
67-
"@typescript-eslint/parser": "^8.35.1",
66+
"@typescript-eslint/eslint-plugin": "^8.37.0",
67+
"@typescript-eslint/parser": "^8.37.0",
6868
"@vitejs/plugin-react-oxc": "^0.2.3",
6969
"@vitest/browser": "^3.2.4",
7070
"@vitest/coverage-v8": "^3.2.4",
7171
"@vitest/eslint-plugin": "^1.3.4",
7272
"@wyw-in-js/rollup": "^0.7.0",
7373
"@wyw-in-js/vite": "^0.7.0",
74-
"eslint": "^9.30.1",
74+
"eslint": "^9.31.0",
7575
"eslint-plugin-jest-dom": "^5.5.0",
7676
"eslint-plugin-react": "^7.37.4",
7777
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
7878
"eslint-plugin-react-hooks": "^5.2.0",
79-
"eslint-plugin-react-hooks-extra": "^1.51.3",
79+
"eslint-plugin-react-hooks-extra": "^1.52.3",
8080
"eslint-plugin-sonarjs": "^3.0.4",
81-
"eslint-plugin-testing-library": "^7.5.0",
81+
"eslint-plugin-testing-library": "^7.6.0",
8282
"jspdf": "^3.0.1",
8383
"jspdf-autotable": "^5.0.2",
84-
"playwright": "^1.53.2",
84+
"playwright": "^1.54.1",
8585
"postcss": "^8.5.2",
8686
"prettier": "3.6.2",
8787
"react": "^19.1.0",
8888
"react-dom": "^19.1.0",
89-
"rolldown": "^1.0.0-beta.9",
90-
"rolldown-plugin-dts": "^0.13.13",
89+
"rolldown": "^1.0.0-beta.28",
90+
"rolldown-plugin-dts": "^0.13.14",
9191
"typescript": "~5.8.2",
9292
"vite": "npm:rolldown-vite@^7.0.1",
9393
"vitest": "^3.2.4",

0 commit comments

Comments
 (0)