Skip to content

Commit 66cda4f

Browse files
authored
feat: Update dependencies (#737)
Mainly updating the dev dependencies to the latest versions.
1 parent 1e8a3b7 commit 66cda4f

29 files changed

+2157
-2997
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2023 React Intersection Observer authors
3+
Copyright (c) 2025 React Intersection Observer authors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

biome.json

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,30 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json",
3-
"files": {
4-
"ignore": [
5-
".idea/**",
6-
"node_modules/**",
7-
"dist/**",
8-
"coverage/**",
9-
"storybook-static/**",
10-
"pnpm-lock.yaml"
11-
]
12-
},
13-
"organizeImports": {
14-
"enabled": true
15-
},
2+
"$schema": "/node_modules/@biomejs/biome/configuration_schema.json",
163
"formatter": {
174
"enabled": true,
185
"indentStyle": "space"
196
},
7+
"css": {
8+
"parser": {
9+
"tailwindDirectives": true
10+
}
11+
},
2012
"linter": {
2113
"enabled": true,
2214
"rules": {
2315
"recommended": true,
2416
"complexity": {
2517
"noForEach": "off"
2618
},
19+
"correctness": {
20+
"noUnusedVariables": {
21+
"level": "warn",
22+
"options": {
23+
"ignoreRestSiblings": true
24+
}
25+
}
26+
},
2727
"style": {
28-
"noVar": "off",
2928
"noUnusedTemplateLiteral": "off"
3029
},
3130
"a11y": {

package.json

Lines changed: 26 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@
2929
}
3030
}
3131
},
32-
"files": ["dist", "test-utils"],
32+
"files": [
33+
"dist",
34+
"test-utils"
35+
],
3336
"author": "Daniel Schmidt",
3437
"license": "MIT",
3538
"sideEffects": false,
@@ -49,8 +52,7 @@
4952
"lint": "biome check .",
5053
"version": "pnpm build",
5154
"storybook:build": "pnpm build && pnpm --filter storybook build",
52-
"test": "vitest",
53-
"test:browser": "vitest --workspace=vitest.workspace.ts"
55+
"test": "vitest"
5456
},
5557
"keywords": [
5658
"react",
@@ -84,7 +86,7 @@
8486
},
8587
"lint-staged": {
8688
"*.{js,json,css,md,ts,tsx}": [
87-
"biome check --apply --no-errors-on-unmatched --files-ignore-unknown=true"
89+
"biome check --fix --no-errors-on-unmatched --files-ignore-unknown=true"
8890
]
8991
},
9092
"size-limit": [
@@ -112,29 +114,30 @@
112114
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
113115
},
114116
"devDependencies": {
115-
"@arethetypeswrong/cli": "^0.17.4",
116-
"@biomejs/biome": "^1.9.4",
117+
"@arethetypeswrong/cli": "^0.18.2",
118+
"@biomejs/biome": "^2.3.1",
117119
"@size-limit/preset-small-lib": "^11.2.0",
118-
"@testing-library/jest-dom": "^6.6.3",
119-
"@testing-library/react": "^16.2.0",
120-
"@types/react": "^19.0.10",
121-
"@types/react-dom": "^19.0.4",
122-
"@vitejs/plugin-react": "^4.3.4",
123-
"@vitest/browser": "^3.0.7",
124-
"@vitest/coverage-istanbul": "^3.0.7",
125-
"bumpp": "^10.0.3",
126-
"lint-staged": "^15.4.3",
120+
"@testing-library/jest-dom": "^6.9.1",
121+
"@testing-library/react": "^16.3.0",
122+
"@types/node": "^24.9.1",
123+
"@types/react": "^19.2.2",
124+
"@types/react-dom": "^19.2.2",
125+
"@vitejs/plugin-react": "^5.1.0",
126+
"@vitest/browser-playwright": "^4.0.4",
127+
"@vitest/coverage-istanbul": "^4.0.4",
128+
"bumpp": "^10.3.1",
129+
"lint-staged": "^16.2.6",
127130
"microbundle": "^0.15.1",
128131
"npm-run-all": "^4.1.5",
129-
"playwright": "^1.50.1",
130-
"publint": "^0.3.8",
131-
"react": "^19.0.0",
132-
"react-dom": "^19.0.0",
133-
"simple-git-hooks": "^2.11.1",
132+
"playwright": "^1.56.1",
133+
"publint": "^0.3.15",
134+
"react": "^19.2.0",
135+
"react-dom": "^19.2.0",
136+
"simple-git-hooks": "^2.13.1",
134137
"size-limit": "^11.2.0",
135-
"tsup": "^8.4.0",
136-
"typescript": "^5.8.2",
137-
"vitest": "^3.0.7"
138+
"tsup": "^8.5.0",
139+
"typescript": "^5.9.3",
140+
"vitest": "^4.0.4"
138141
},
139142
"peerDependenciesMeta": {
140143
"react-dom": {

0 commit comments

Comments
 (0)