Skip to content

Commit 238d6a6

Browse files
committed
upgrade deps
1 parent 317be6e commit 238d6a6

File tree

9 files changed

+585
-533
lines changed

9 files changed

+585
-533
lines changed

examples/express/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"@types/express": "^4.17.21",
3131
"@types/jest": "^29.5.12",
3232
"@types/morgan": "^1.9.9",
33-
"@types/node": "^20.12.11",
33+
"@types/node": "^20.12.12",
3434
"@types/supertest": "^6.0.2",
3535
"jest": "^29.7.0",
3636
"supertest": "^7.0.0",

examples/nextjs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
"nextjs-themes": "^3.1.1",
2020
"react": "^18.3.1",
2121
"react-dom": "^18.3.1",
22-
"react18-loaders": "^1.0.0"
22+
"react18-loaders": "^1.0.1"
2323
},
2424
"devDependencies": {
2525
"@next/eslint-plugin-next": "^14.2.3",
2626
"@repo/eslint-config": "workspace:*",
2727
"@repo/typescript-config": "workspace:*",
28-
"@types/node": "^20.12.11",
29-
"@types/react": "^18.3.1",
28+
"@types/node": "^20.12.12",
29+
"@types/react": "^18.3.2",
3030
"@types/react-dom": "^18.3.0",
3131
"typescript": "^5.4.5"
3232
}

examples/remix/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,24 @@
1010
"lint": "eslint app/"
1111
},
1212
"dependencies": {
13-
"@remix-run/node": "^2.9.1",
14-
"@remix-run/react": "^2.9.1",
15-
"@remix-run/serve": "^2.9.1",
16-
"@remix-run/server-runtime": "^2.9.1",
13+
"@remix-run/node": "^2.9.2",
14+
"@remix-run/react": "^2.9.2",
15+
"@remix-run/serve": "^2.9.2",
16+
"@remix-run/server-runtime": "^2.9.2",
1717
"@repo/shared": "workspace:*",
1818
"@vercel/analytics": "^1.2.2",
1919
"@vercel/remix-entry-server": "^0.1.1",
2020
"esbuild-plugin-react18": "workspace:*",
2121
"react": "^18.3.1",
2222
"react-dom": "^18.3.1",
23-
"react18-loaders": "^1.0.0",
23+
"react18-loaders": "^1.0.1",
2424
"react18-themes": "^3.1.0"
2525
},
2626
"devDependencies": {
27-
"@remix-run/dev": "^2.9.1",
27+
"@remix-run/dev": "^2.9.2",
2828
"@repo/eslint-config": "workspace:*",
2929
"@repo/typescript-config": "workspace:*",
30-
"@types/react": "^18.3.1",
30+
"@types/react": "^18.3.2",
3131
"@types/react-dom": "^18.3.0",
3232
"typescript": "^5.4.5"
3333
},

examples/vite/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
"esbuild-plugin-react18": "workspace:*",
1616
"react": "^18.3.1",
1717
"react-dom": "^18.3.1",
18-
"react18-loaders": "^1.0.0",
18+
"react18-loaders": "^1.0.1",
1919
"react18-themes": "^3.1.0"
2020
},
2121
"devDependencies": {
2222
"@repo/eslint-config": "workspace:*",
2323
"@repo/typescript-config": "workspace:*",
24-
"@types/react": "^18.3.1",
24+
"@types/react": "^18.3.2",
2525
"@types/react-dom": "^18.3.0",
2626
"@vitejs/plugin-react": "^4.2.1",
2727
"typescript": "^5.4.5",

lib/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
"devDependencies": {
2727
"@repo/eslint-config": "workspace:*",
2828
"@repo/typescript-config": "workspace:*",
29-
"@types/node": "^20.12.11",
29+
"@types/node": "^20.12.12",
3030
"@vitest/coverage-v8": "^1.6.0",
31-
"esbuild": "^0.21.1",
31+
"esbuild": "^0.21.2",
3232
"esbuild-plugin-react18-css": "^0.0.4",
3333
"tiny-glob": "^0.2.9",
3434
"tsup": "^8.0.2",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"typedoc": "^0.25.13",
2020
"typedoc-plugin-extras": "^3.0.0",
2121
"typedoc-plugin-inline-sources": "^1.0.2",
22-
"typedoc-plugin-mdn-links": "^3.1.24",
22+
"typedoc-plugin-mdn-links": "^3.1.25",
2323
"typedoc-plugin-missing-exports": "^2.2.0",
2424
"typedoc-plugin-rename-defaults": "^0.7.0",
2525
"typedoc-plugin-zod": "^1.1.2"
@@ -29,6 +29,6 @@
2929
"node": ">=18"
3030
},
3131
"dependencies": {
32-
"@types/node": "^20.12.11"
32+
"@types/node": "^20.12.12"
3333
}
3434
}

packages/logger/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@repo/jest-presets": "workspace:*",
2323
"@repo/typescript-config": "workspace:*",
2424
"@types/jest": "^29.5.12",
25-
"@types/node": "^20.12.11",
25+
"@types/node": "^20.12.12",
2626
"jest": "^29.7.0",
2727
"tsup": "^8.0.2",
2828
"typescript": "^5.4.5"

packages/shared/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
"@repo/jest-presets": "workspace:*",
2323
"@repo/typescript-config": "workspace:*",
2424
"@testing-library/react": "^15.0.7",
25-
"@types/node": "^20.12.11",
26-
"@types/react": "^18.3.1",
25+
"@types/node": "^20.12.12",
26+
"@types/react": "^18.3.2",
2727
"@types/react-dom": "^18.3.0",
2828
"@vitejs/plugin-react": "^4.2.1",
2929
"@vitest/coverage-v8": "^1.6.0",
@@ -53,6 +53,6 @@
5353
"nextjs-themes": "^3.1.1",
5454
"r18gs": "^1.0.2",
5555
"react-live": "^4.1.6",
56-
"react18-loaders": "^1.0.0"
56+
"react18-loaders": "^1.0.1"
5757
}
5858
}

0 commit comments

Comments
 (0)