Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[breaking] require Node 16.14 #6388

Merged
merged 1 commit into from Aug 29, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/young-pumpkins-approve.md
@@ -0,0 +1,6 @@
---
'@sveltejs/kit': patch
'@sveltejs/package': patch
---

[breaking] require Node 16.14
2 changes: 1 addition & 1 deletion packages/adapter-cloudflare/README.md
Expand Up @@ -49,7 +49,7 @@ When configuring your project settings, you must use the following settings:
- **Environment variables**
- `NODE_VERSION`: `16`

> **Important:** You need to add a `NODE_VERSION` environment variable to both the "production" and "preview" environments. You can add this during project setup or later in the Pages project settings. SvelteKit requires Node `16.9` or later, so you should use `16` as the `NODE_VERSION` value.
> **Important:** You need to add a `NODE_VERSION` environment variable to both the "production" and "preview" environments. You can add this during project setup or later in the Pages project settings. SvelteKit requires Node `16.14` or later, so you should use `16` as the `NODE_VERSION` value.

## Environment variables

Expand Down
2 changes: 1 addition & 1 deletion packages/kit/package.json
Expand Up @@ -90,6 +90,6 @@
},
"types": "types/index.d.ts",
"engines": {
"node": ">=16.9"
"node": ">=16.14"
}
}
2 changes: 1 addition & 1 deletion packages/package/package.json
Expand Up @@ -47,6 +47,6 @@
},
"types": "types/index.d.ts",
"engines": {
"node": ">=16.9"
"node": ">=16.14"
}
}