Skip to content

Commit

Permalink
exclude Node 17.x as supported version (#8174)
Browse files Browse the repository at this point in the history
* explicitly exclude Node 17.x in supported versions

* add changeset
  • Loading branch information
Conduitry authored Dec 15, 2022
1 parent 3f7af7a commit de5b8aa
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .changeset/nervous-lamps-pay.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@sveltejs/kit': patch
'@sveltejs/package': patch
---

Explicitly mark Node 17.x as not supported
2 changes: 1 addition & 1 deletion packages/kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,6 @@
},
"types": "types/index.d.ts",
"engines": {
"node": ">=16.14"
"node": "^16.14 || >=18"
}
}
2 changes: 1 addition & 1 deletion packages/package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@
},
"types": "types/index.d.ts",
"engines": {
"node": ">=16.14"
"node": "^16.14 || >=18"
}
}

0 comments on commit de5b8aa

Please sign in to comment.