Skip to content

Commit 1dea7cf

Browse files
authored
chore: update dev dependencies (#1075)
1 parent a1959f5 commit 1dea7cf

File tree

8 files changed

+1106
-919
lines changed

8 files changed

+1106
-919
lines changed

.github/workflows/test-multiple-versions.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
- 18.2.0
3232
- 18.3.1
3333
- 19.0.0
34-
- 19.1.0-canary-de1eaa26-20250124
35-
- 0.0.0-experimental-de1eaa26-20250124
34+
- 19.1.0-canary-fbcda19a-20250317
35+
- 0.0.0-experimental-fbcda19a-20250317
3636
steps:
3737
- uses: actions/checkout@v4
3838
- uses: pnpm/action-setup@v4

docs/how-tos/how-to-easily-access-the-state-from-anywhere-in-the-application.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ module.exports = {
8989

9090
5. Restart the application server
9191
<br />
92-
That's it you will now be able to do `import {
93-
(state, useSnapshot, subscribe)
94-
} from '@state';` from anywhere inside your application.
92+
That's it you will now be able to do `import
93+
{(state, useSnapshot, subscribe)} from '@state';` from anywhere inside your
94+
application.
9595

9696
## Using a third party library
9797

examples/counter/src/prism.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
code[class*='language-'],
77
pre[class*='language-'] {
88
color: #393a34;
9-
font-family: 'Consolas', 'Bitstream Vera Sans Mono', 'Courier New', Courier,
10-
monospace;
9+
font-family:
10+
'Consolas', 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;
1111
direction: ltr;
1212
text-align: left;
1313
white-space: pre;

examples/todo/src/prism.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
code[class*='language-'],
77
pre[class*='language-'] {
88
color: #393a34;
9-
font-family: 'Consolas', 'Bitstream Vera Sans Mono', 'Courier New', Courier,
10-
monospace;
9+
font-family:
10+
'Consolas', 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;
1111
direction: ltr;
1212
text-align: left;
1313
white-space: pre;

package.json

+20-20
Original file line numberDiff line numberDiff line change
@@ -107,48 +107,48 @@
107107
"proxy-compare": "^3.0.1"
108108
},
109109
"devDependencies": {
110-
"@eslint/js": "^9.19.0",
110+
"@eslint/js": "^9.22.0",
111111
"@redux-devtools/extension": "^3.3.0",
112112
"@rollup/plugin-alias": "^5.1.1",
113-
"@rollup/plugin-node-resolve": "^16.0.0",
113+
"@rollup/plugin-node-resolve": "^16.0.1",
114114
"@rollup/plugin-replace": "^6.0.2",
115115
"@rollup/plugin-typescript": "^12.1.2",
116116
"@testing-library/jest-dom": "^6.6.3",
117117
"@testing-library/react": "^16.2.0",
118118
"@types/jsdom": "^21.1.7",
119-
"@types/react": "^19.0.8",
120-
"@types/react-dom": "^19.0.3",
121-
"@vitest/coverage-v8": "^3.0.4",
122-
"@vitest/eslint-plugin": "^1.1.25",
123-
"@vitest/ui": "^3.0.4",
124-
"esbuild": "^0.24.2",
125-
"eslint": "9.19.0",
126-
"eslint-import-resolver-typescript": "^3.7.0",
119+
"@types/react": "^19.0.11",
120+
"@types/react-dom": "^19.0.4",
121+
"@vitest/coverage-v8": "^3.0.9",
122+
"@vitest/eslint-plugin": "^1.1.37",
123+
"@vitest/ui": "^3.0.9",
124+
"esbuild": "^0.25.1",
125+
"eslint": "9.22.0",
126+
"eslint-import-resolver-typescript": "^4.1.1",
127127
"eslint-plugin-import": "^2.31.0",
128128
"eslint-plugin-jest-dom": "^5.5.0",
129129
"eslint-plugin-react": "^7.37.4",
130-
"eslint-plugin-react-compiler": "19.0.0-beta-decd7b8-20250118",
130+
"eslint-plugin-react-compiler": "19.0.0-beta-3229e95-20250315",
131131
"eslint-plugin-react-hooks": "^5.2.0",
132132
"eslint-plugin-testing-library": "^7.1.1",
133133
"jest-leak-detector": "^29.7.0",
134134
"jsdom": "^26.0.0",
135135
"json": "^11.0.0",
136136
"postinstall-postinstall": "^2.1.0",
137-
"prettier": "^3.4.2",
137+
"prettier": "^3.5.3",
138138
"proxy-memoize": "^3.0.1",
139139
"react": "19.0.0",
140140
"react-dom": "19.0.0",
141141
"redux": "^5.0.1",
142-
"rollup": "^4.32.0",
143-
"rollup-plugin-esbuild": "^6.1.1",
144-
"shelljs": "^0.8.5",
145-
"shx": "^0.3.4",
142+
"rollup": "^4.36.0",
143+
"rollup-plugin-esbuild": "^6.2.1",
144+
"shelljs": "^0.9.2",
145+
"shx": "^0.4.0",
146146
"ts-expect": "^1.3.0",
147147
"tslib": "^2.8.1",
148-
"typescript": "^5.7.3",
149-
"typescript-eslint": "^8.21.0",
150-
"vite": "^6.0.11",
151-
"vitest": "^3.0.4"
148+
"typescript": "^5.8.2",
149+
"typescript-eslint": "^8.26.1",
150+
"vite": "^6.2.2",
151+
"vitest": "^3.0.9"
152152
},
153153
"peerDependencies": {
154154
"@types/react": ">=18.0.0",

0 commit comments

Comments
 (0)