You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/create-react-server/test/README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,9 @@ Integration tests that verify `create-react-server` works correctly across all r
11
11
## Test Matrix
12
12
13
13
### Runtimes
14
-
-**Node.js** (`node`) — runs on `node:20`
15
-
-**Bun** (`bun`) — runs on a pinned `oven/bun` image with Node.js 20 copied from the official Node image (Node.js is used for `npm install` and tooling; Bun is used at runtime)
16
-
-**Deno** (`deno`) — runs on `node:20` with Deno installed
14
+
-**Node.js** (`node`) — runs on `node:26`
15
+
-**Bun** (`bun`) — runs on a pinned `oven/bun` image with Node.js 26 copied from the official Node image (Node.js is used for `npm install` and tooling; Bun is used at runtime)
16
+
-**Deno** (`deno`) — runs on `node:26` with Deno installed
17
17
18
18
### Presets
19
19
-`blank` — minimal JavaScript project
@@ -47,7 +47,7 @@ Each runtime generates different `package.json` scripts via the `runtime.mjs` ge
47
47
The `router` preset's build fails during static export. Dev mode works fine. Build/start tests are skipped for this preset.
48
48
49
49
### `module-alias` pinned to `~2.2.3`
50
-
The `module-alias` package is used by `@lazarv/react-server` to alias CJS `require()` calls (e.g. redirecting `react`, `react-dom`, `picocolors`, etc. to the correct resolved paths). Version 2.3.x introduced `node:module``registerHooks` which requires Node.js 22+ and is not supported by Deno at all. The dependency is pinned to `~2.2.3` in `packages/react-server/package.json` to maintain compatibility with Node.js 20 and Deno.
50
+
The `module-alias` package is used by `@lazarv/react-server` to alias CJS `require()` calls (e.g. redirecting `react`, `react-dom`, `picocolors`, etc. to the correct resolved paths). Version 2.3.x introduced `node:module``registerHooks`, which is not supported by Deno at all. The dependency is pinned to `~2.2.3` in `packages/react-server/package.json` to maintain Deno compatibility.
51
51
52
52
## Running Tests
53
53
@@ -107,9 +107,9 @@ test/
107
107
│ ├── utils.mjs # Test helpers (pack, build image, run container)
108
108
│ └── __snapshots__/ # Vitest snapshots of generated files
0 commit comments