Skip to content

Commit

Permalink
chore(deps): latest 2025-01-23
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-ogawa committed Jan 23, 2025
1 parent f8624d7 commit 38ae798
Show file tree
Hide file tree
Showing 15 changed files with 1,535 additions and 2,434 deletions.
2 changes: 1 addition & 1 deletion examples/child-process/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"test-e2e-preview": "E2E_PREVIEW=1 playwright test"
},
"devDependencies": {
"@types/bun": "^1.1.10"
"@types/bun": "^1.2.0"
},
"volta": {
"extends": "../../package.json"
Expand Down
4 changes: 3 additions & 1 deletion examples/child-process/src/lib/ambient.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
declare const __vite_server: import("vite").ViteDevServer;
declare const __vite_environment_rsc__: import("./vite/environment").ChildProcessFetchDevEnvironment;
declare const __vite_environment_rsc__: import(
"./vite/environment",
).ChildProcessFetchDevEnvironment;
7 changes: 3 additions & 4 deletions examples/react-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,13 @@
"cf-preview": "cd misc/cloudflare-workers && wrangler dev",
"cf-release": "cd misc/cloudflare-workers && wrangler deploy"
},
"dependencies": {},
"devDependencies": {
"@hiogawa/transforms": "0.0.0",
"@hiogawa/vite-plugin-ssr-middleware-alpha": "workspace:*",
"@types/estree": "^1.0.6",
"happy-dom": "^14.12.3",
"magic-string": "^0.30.10",
"unocss": "0.61.5"
"happy-dom": "^16.7.2",
"magic-string": "^0.30.17",
"unocss": "65.4.3"
},
"volta": {
"extends": "../../package.json"
Expand Down
16 changes: 4 additions & 12 deletions examples/react-server/src/routes/_client.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,14 @@
border: none;
border-radius: 8px;
padding: 0.5rem 0.75rem;
box-shadow:
0 0px 1px hsla(0, 0%, 0%, 0.2),
0 1px 2px hsla(0, 0%, 0%, 0.2);
box-shadow: 0 0px 1px hsla(0, 0%, 0%, 0.2), 0 1px 2px hsla(0, 0%, 0%, 0.2);
line-height: 1.5;
margin: 0.4rem;
font-weight: 500;
}

.client-btn:hover {
box-shadow:
0 0px 1px hsla(0, 0%, 0%, 0.6),
0 1px 2px hsla(0, 0%, 0%, 0.2);
box-shadow: 0 0px 1px hsla(0, 0%, 0%, 0.6), 0 1px 2px hsla(0, 0%, 0%, 0.2);
}

.client-btn:active {
Expand All @@ -34,16 +30,12 @@
border: none;
border-radius: 8px;
padding: 0.5rem 0.75rem;
box-shadow:
0 0px 1px hsla(0, 0%, 0%, 0.2),
0 1px 2px hsla(0, 0%, 0%, 0.2);
box-shadow: 0 0px 1px hsla(0, 0%, 0%, 0.2), 0 1px 2px hsla(0, 0%, 0%, 0.2);
line-height: 1.5;
margin: 0.4rem;
font-weight: 500;
}

.client-input:hover {
box-shadow:
0 0px 1px hsla(0, 0%, 0%, 0.6),
0 1px 2px hsla(0, 0%, 0%, 0.2);
box-shadow: 0 0px 1px hsla(0, 0%, 0%, 0.6), 0 1px 2px hsla(0, 0%, 0%, 0.2);
}
8 changes: 2 additions & 6 deletions examples/react-server/src/routes/_server.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,14 @@
border: none;
border-radius: 8px;
padding: 0.5rem 0.75rem;
box-shadow:
0 0px 1px hsla(0, 0%, 0%, 0.2),
0 1px 2px hsla(0, 0%, 0%, 0.2);
box-shadow: 0 0px 1px hsla(0, 0%, 0%, 0.2), 0 1px 2px hsla(0, 0%, 0%, 0.2);
line-height: 1.5;
margin: 0.4rem;
font-weight: 500;
}

.server-btn:hover {
box-shadow:
0 0px 1px hsla(0, 0%, 0%, 0.6),
0 1px 2px hsla(0, 0%, 0%, 0.2);
box-shadow: 0 0px 1px hsla(0, 0%, 0%, 0.6), 0 1px 2px hsla(0, 0%, 0%, 0.2);
}

.server-btn:active {
Expand Down
4 changes: 3 additions & 1 deletion examples/react-server/src/types/react-modules.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ declare module "react-server-dom-webpack/server.edge" {
data: T,
bundlerConfig: import(".").BundlerConfig,
opitons?: {
onError: import("react-dom/server").RenderToReadableStreamOptions["onError"];
onError: import(
"react-dom/server",
).RenderToReadableStreamOptions["onError"];
},
): ReadableStream<Uint8Array>;

Expand Down
2 changes: 1 addition & 1 deletion examples/react-ssr-workerd/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test-e2e": "rm -rf .mf && playwright test"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240925.0",
"@cloudflare/workers-types": "^4.20250121.0",
"@hiogawa/vite-plugin-workerd": "workspace:*"
},
"volta": {
Expand Down
12 changes: 6 additions & 6 deletions examples/vue-ssr-extra/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
"test-e2e-preview": "E2E_PREVIEW=1 playwright test"
},
"dependencies": {
"pinia": "^2.1.7",
"vue": "^3.4.32",
"vue-router": "^4.4.0"
"pinia": "^2.3.1",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240925.0",
"@cloudflare/workers-types": "^4.20250121.0",
"@hiogawa/vite-plugin-workerd": "workspace:*",
"@vitejs/plugin-vue": "^5.0.5",
"vue-tsc": "^2.0.26"
"@vitejs/plugin-vue": "^5.2.1",
"vue-tsc": "^2.2.0"
},
"volta": {
"extends": "../../package.json"
Expand Down
8 changes: 2 additions & 6 deletions examples/vue-ssr-extra/src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,15 @@ button {
border: none;
border-radius: 8px;
padding: 0.5rem 0.75rem;
box-shadow:
0 0px 1px hsla(0, 0%, 0%, 0.2),
0 1px 2px hsla(0, 0%, 0%, 0.2);
box-shadow: 0 0px 1px hsla(0, 0%, 0%, 0.2), 0 1px 2px hsla(0, 0%, 0%, 0.2);
background-color: white;
line-height: 1.5;
margin: 0.4rem;
font-weight: 500;
}

button:hover {
box-shadow:
0 0px 1px hsla(0, 0%, 0%, 0.6),
0 1px 2px hsla(0, 0%, 0%, 0.2);
box-shadow: 0 0px 1px hsla(0, 0%, 0%, 0.6), 0 1px 2px hsla(0, 0%, 0%, 0.2);
}

button:active {
Expand Down
6 changes: 3 additions & 3 deletions examples/vue-ssr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
"cf-release": "cd misc/cloudflare-workers && wrangler deploy"
},
"dependencies": {
"vue": "^3.4.32"
"vue": "^3.5.13"
},
"devDependencies": {
"@hiogawa/vite-plugin-ssr-middleware-alpha": "workspace:*",
"@hiogawa/vite-plugin-workerd": "workspace:*",
"@vitejs/plugin-vue": "^5.0.5",
"vue-tsc": "^2.0.26"
"@vitejs/plugin-vue": "^5.2.1",
"vue-tsc": "^2.2.0"
},
"volta": {
"extends": "../../package.json"
Expand Down
3 changes: 1 addition & 2 deletions examples/web-worker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@
"test-e2e-preview": "E2E_PREVIEW=1 playwright test"
},
"dependencies": {
"test-dep-conditions": "file:./fixtures/test-dep-conditions"
"test-dep-conditions": "file:fixtures/test-dep-conditions"
},
"devDependencies": {},
"volta": {
"extends": "../../package.json"
}
Expand Down
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,28 +13,28 @@
"vite-ecosystem-ci:test": "bash misc/vite-ecosystem-ci.sh"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@biomejs/biome": "^1.9.4",
"@hiogawa/utils": "1.7.0",
"@hiogawa/utils-node": "^0.0.2",
"@hiogawa/vite-plugin-ssr-middleware": "^0.0.3",
"@playwright/test": "^1.45.2",
"@playwright/test": "^1.49.1",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^20.14.11",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.1",
"esbuild": "^0.23.0",
"magic-string": "^0.30.10",
"miniflare": "^3.20240925.0",
"@types/node": "^22.10.8",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"esbuild": "^0.24.2",
"magic-string": "^0.30.17",
"miniflare": "^3.20241230.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-server-dom-webpack": "^19.0.0",
"tsup": "^8.1.2",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"vite": "^6.0.3",
"vitest": "^2.0.3",
"wrangler": "^3.79.0"
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vitest": "^3.0.3",
"wrangler": "^3.105.0"
},
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b",
"volta": {
Expand Down
2 changes: 1 addition & 1 deletion packages/ssr-middleware/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"build": "tsup --clean"
},
"dependencies": {
"vite": "6.0.0-alpha.16"
"vite": "^6.0.11"
},
"peerDependencies": {
"vite": "*"
Expand Down
8 changes: 4 additions & 4 deletions packages/workerd/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
"build": "tsup --clean"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240925.0",
"miniflare": "^3.20240925.0",
"vite": "6.0.0-alpha.16",
"wrangler": "^3.79.0"
"@cloudflare/workers-types": "^4.20250121.0",
"miniflare": "^3.20241230.2",
"vite": "^6.0.11",
"wrangler": "^3.105.0"
},
"peerDependencies": {
"miniflare": "*",
Expand Down
Loading

0 comments on commit 38ae798

Please sign in to comment.