Skip to content

Commit ce8c3bb

Browse files
authored
build: update dev dependencies (#2857)
* build: update dev dependencies Signed-off-by: gpbl <io@gpbl.dev> * Lint files Signed-off-by: gpbl <io@gpbl.dev> * Update snapshots Signed-off-by: gpbl <io@gpbl.dev> * Lint files Signed-off-by: gpbl <io@gpbl.dev> * Remove unused directive Signed-off-by: gpbl <io@gpbl.dev> --------- Signed-off-by: gpbl <io@gpbl.dev>
1 parent f6d34e0 commit ce8c3bb

File tree

14 files changed

+3123
-2166
lines changed

14 files changed

+3123
-2166
lines changed

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.2.0/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.8/schema.json",
33
"vcs": {
44
"enabled": false,
55
"clientKind": "git",

examples-app/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"react-dom": "^19.1.1"
1515
},
1616
"devDependencies": {
17-
"@types/react": "^19.1.10",
18-
"@types/react-dom": "^19.1.7",
19-
"@vitejs/plugin-react": "^5.0.0",
20-
"typescript": "^5.9.2",
21-
"vite": "^7.1.2"
17+
"@types/react": "^19.2.7",
18+
"@types/react-dom": "^19.2.3",
19+
"@vitejs/plugin-react": "^5.1.1",
20+
"typescript": "^5.9.3",
21+
"vite": "^7.2.4"
2222
}
2323
}

examples/ModifiersCustom.test.tsx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ beforeEach(() => {
99
render(<ModifiersCustom />);
1010
});
1111

12-
test.each([new Date(2024, 5, 8), new Date(2024, 5, 9), new Date(2021, 5, 10)])(
13-
"%s should have the booked style",
14-
(day) => {
15-
expect(gridcell(day, true)).toHaveClass("booked");
16-
},
17-
);
12+
test.each([
13+
new Date(2024, 5, 8),
14+
new Date(2024, 5, 9),
15+
new Date(2021, 5, 10),
16+
])("%s should have the booked style", (day) => {
17+
expect(gridcell(day, true)).toHaveClass("booked");
18+
});
1819

1920
test.each([new Date(2024, 5, 1)])("%s should have the booked style", (day) => {
2021
expect(gridcell(day, true)).not.toHaveClass("booked");

examples/__snapshots__/Range.test.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Jest Snapshot v1, https://goo.gl/fbAQLP
1+
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
22

33
exports[`should match the snapshot 1`] = `
44
<div>

examples/__snapshots__/StylingCssModules.test.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Jest Snapshot v1, https://goo.gl/fbAQLP
1+
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
22

33
exports[`should match the snapshot 1`] = `
44
<div

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -227,30 +227,30 @@
227227
"date-fns-jalali": "^4.1.0-0"
228228
},
229229
"devDependencies": {
230-
"@biomejs/biome": "2.2.0",
231-
"@jest/types": "^30.0.5",
230+
"@biomejs/biome": "2.3.8",
231+
"@jest/types": "^30.2.0",
232232
"@radix-ui/react-select": "^2.2.6",
233-
"@swc/core": "^1.13.3",
233+
"@swc/core": "^1.15.3",
234234
"@swc/jest": "^0.2.39",
235235
"@testing-library/dom": "^10.4.1",
236-
"@testing-library/jest-dom": "^6.7.0",
236+
"@testing-library/jest-dom": "^6.9.1",
237237
"@testing-library/react": "^16.3.0",
238238
"@testing-library/user-event": "^14.6.1",
239239
"@types/jest": "^30.0.0",
240-
"@types/node": "^24.3.0",
241-
"@types/react": "^19.1.1",
242-
"@types/react-dom": "^19.1.7",
243-
"jest": "^30.0.5",
244-
"jest-environment-jsdom": "^30.0.5",
240+
"@types/node": "^24.10.1",
241+
"@types/react": "^19.2.7",
242+
"@types/react-dom": "^19.2.3",
243+
"jest": "^30.2.0",
244+
"jest-environment-jsdom": "^30.2.0",
245245
"jest-transform-css": "^6.0.3",
246246
"mockdate": "^3.0.5",
247-
"prettier": "^3.6.2",
248-
"prettier-plugin-jsdoc": "^1.3.3",
249-
"react": "^19.1.1",
250-
"react-dom": "^19.1.1",
247+
"prettier": "^3.7.1",
248+
"prettier-plugin-jsdoc": "^1.5.0",
249+
"react": "^19.2.0",
250+
"react-dom": "^19.2.0",
251251
"ts-node": "^10.9.2",
252252
"tslib": "^2.8.1",
253-
"typescript": "^5.9.2",
253+
"typescript": "^5.9.3",
254254
"typescript-css-modules": "^1.0.4"
255255
},
256256
"peerDependencies": {

performance-tests/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
"author": "",
1313
"license": "ISC",
1414
"dependencies": {
15-
"lighthouse": "^12.4.0",
16-
"open": "^10.1.0",
17-
"wait-on": "^8.0.2",
18-
"puppeteer": "^24.4.0"
15+
"lighthouse": "^13.0.1",
16+
"open": "^11.0.0",
17+
"wait-on": "^9.0.3",
18+
"puppeteer": "^24.31.0"
1919
}
2020
}

0 commit comments

Comments
 (0)