Skip to content

Commit

Permalink
Merge branch 'main' into release-next
Browse files Browse the repository at this point in the history
  • Loading branch information
brophdawg11 committed Jun 8, 2023
2 parents b662d41 + 72d7377 commit 4aacf00
Show file tree
Hide file tree
Showing 20 changed files with 159 additions and 158 deletions.
2 changes: 1 addition & 1 deletion docs/guides/typescript.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The Remix compiler will not do any type checking (it simply removes the types).
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion integration/compiler-mjs-output-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ test.beforeAll(async () => {
"typescript": "0.0.0-local-version"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
`,
Expand Down
2 changes: 1 addition & 1 deletion integration/helpers/cf-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
"typescript": "0.0.0-local-version"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
2 changes: 1 addition & 1 deletion integration/helpers/deno-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"@remix-run/dev": "0.0.0-local-version"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
2 changes: 1 addition & 1 deletion integration/helpers/node-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"typescript": "0.0.0-local-version"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
2 changes: 1 addition & 1 deletion integration/hmr-log-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ let fixture = (options: { appPort: number; devPort: number }): FixtureInit => ({
typescript: "0.0.0-local-version",
},
engines: {
node: ">=14",
node: ">=14.0.0",
},
}),

Expand Down
2 changes: 1 addition & 1 deletion integration/hmr-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ let fixture = (options: { appPort: number; devPort: number }): FixtureInit => ({
typescript: "0.0.0-local-version",
},
engines: {
node: ">=14",
node: ">=14.0.0",
},
}),

Expand Down
2 changes: 1 addition & 1 deletion integration/server-entry-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ test.describe("Default Server Entry (React 17)", () => {
typescript: "0.0.0-local-version",
},
engines: {
node: ">=14",
node: ">=14.0.0",
},
}),
},
Expand Down
2 changes: 1 addition & 1 deletion packages/remix-server-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

- Add `errorHeaders` parameter to the leaf `headers()` function to expose headers from thrown responses that bubble up to ancestor route boundaries. If the throwing route contains the boundary, then `errorHeaders` will be the same object as `loaderHeaders`/`actionHeaders` for that route. ([#6425](https://github.com/remix-run/remix/pull/6425), [#6475](https://github.com/remix-run/remix/pull/6475))

- Add optional `handleError` export for custom server-side error processing. This is a new optional export from your `entry.server.tsx` that will be called with any encountered error on the Remix server (loader, action, or render error) ([#6495](https://github.com/remix-run/remix/pull/6495]), [#6524](https://github.com/remix-run/remix/pull/6524)):
- Add optional `handleError` export for custom server-side error processing. This is a new optional export from your `entry.server.tsx` that will be called with any encountered error on the Remix server (loader, action, or render error) ([#6495](https://github.com/remix-run/remix/pull/6495), [#6524](https://github.com/remix-run/remix/pull/6524)):

```ts
// entry.server.tsx
Expand Down
2 changes: 1 addition & 1 deletion scripts/playground/template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"
Expand Down
2 changes: 1 addition & 1 deletion templates/arc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
2 changes: 1 addition & 1 deletion templates/cloudflare-pages/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
"wrangler": "^2.15.1"
},
"engines": {
"node": ">=16.13"
"node": ">=16.13.0"
}
}
2 changes: 1 addition & 1 deletion templates/cloudflare-workers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
"wrangler": "^2.15.1"
},
"engines": {
"node": ">=16.13"
"node": ">=16.13.0"
}
}
2 changes: 1 addition & 1 deletion templates/deno/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"npm-run-all": "^4.1.5"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
2 changes: 1 addition & 1 deletion templates/express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
2 changes: 1 addition & 1 deletion templates/fly/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
2 changes: 1 addition & 1 deletion templates/netlify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
2 changes: 1 addition & 1 deletion templates/remix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
2 changes: 1 addition & 1 deletion templates/vercel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
Loading

0 comments on commit 4aacf00

Please sign in to comment.