Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .changeset/c3-frameworks-update-11859.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
"create-cloudflare": patch
---

Update dependencies of "create-cloudflare"

The following dependency versions have been updated:

| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 7.1.1 | 8.3.0 |
21 changes: 15 additions & 6 deletions packages/create-cloudflare/e2e/tests/frameworks/test-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -410,12 +410,17 @@ function getFrameworkTestConfig(pm: string): NamedFrameworkTestConfig[] {
timeout: LONG_TIMEOUT,
verifyDeploy: {
route: "/",
expectedText: "Vite + React",
// Note that this is the text in the static HTML that is returned
// This React SPA will change this at runtime but we are only making a fetch request
// not actually running the client side JS.
// create-vite 8+ changed the <title> from "Vite + React + TS" to the project name,
// so we match on the React root element instead.
expectedText: '<div id="root">',
},
verifyPreview: {
previewArgs: ["--inspector-port=0"],
route: "/",
expectedText: "Vite + React",
expectedText: '<div id="root">',
},
nodeCompat: false,
},
Expand All @@ -435,7 +440,9 @@ function getFrameworkTestConfig(pm: string): NamedFrameworkTestConfig[] {
// Note that this is the text in the static HTML that is returned
// This React SPA will change this at runtime but we are only making a fetch request
// not actually running the client side JS.
expectedText: "Vite + React + TS",
// create-vite 8+ changed the <title> from "Vite + React + TS" to the project name,
// so we match on the React root element instead.
expectedText: '<div id="root">',
},
verifyPreview: {
route: "/",
Expand All @@ -445,7 +452,7 @@ function getFrameworkTestConfig(pm: string): NamedFrameworkTestConfig[] {
// Note that this is the text in the static HTML that is returned
// This React SPA will change this at runtime but we are only making a fetch request
// not actually running the client side JS.
expectedText: "Vite + React + TS",
expectedText: '<div id="root">',
},
nodeCompat: false,
},
Expand Down Expand Up @@ -892,7 +899,9 @@ function getExperimentalFrameworkTestConfig(
// Note that this is the text in the static HTML that is returned
// This React SPA will change this at runtime but we are only making a fetch request
// not actually running the client side JS.
expectedText: "Vite + React + TS",
// create-vite 8+ changed the <title> from "Vite + React + TS" to the project name,
// so we match on the React root element instead.
expectedText: '<div id="root">',
},
verifyPreview: {
route: "/",
Expand All @@ -902,7 +911,7 @@ function getExperimentalFrameworkTestConfig(
// Note that this is the text in the static HTML that is returned
// This React SPA will change this at runtime but we are only making a fetch request
// not actually running the client side JS.
expectedText: "Vite + React + TS",
expectedText: '<div id="root">',
},
nodeCompat: false,
verifyTypes: false,
Expand Down
2 changes: 1 addition & 1 deletion packages/create-cloudflare/src/frameworks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"create-hono": "0.19.4",
"create-next-app": "15.5.6",
"create-qwik": "1.19.0",
"create-vite": "7.1.1",
"create-vite": "8.3.0",
"create-rwsdk": "3.1.3",
"create-react-router": "7.13.0",
"create-solid": "0.6.11",
Expand Down
Loading