changests: add changesets for Node.js 18 bump

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2022-07-09 16:37:54 +02:00
parent 7605c11cda
commit 384eaa2307
2 changed files with 24 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
---
'@backstage/create-app': patch
---
Switched Node.js version to support version 16 & 18, rather than 14 & 16. To switch the Node.js version in your own project, apply the following change to the root `package.json`:
```diff
"engines": {
- "node": "14 || 16"
+ "node": "16 || 18"
},
```
As well as the following change to `packages/app/package.json`:
```diff
- "@types/node": "^14.14.32",
+ "@types/node": "^16.11.26",
```
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/cli': minor
---
Switched `tsconfig.json` to target and support `ES2021`, in line with the bump to Node.js 16 & 18.