Skip to content

Commit 239d86b

Browse files
author
Olivier Philippon
committed
[runtime] Upgrade Node.js to version 16
Node.js 16.x just landed on Vercel! 🎈 https://vercel.com/changelog/node-js-16-lts-is-now-available ...only a few hours after the runtime actually landed on AWS itself: πŸ‘Œ aws/aws-lambda-base-images#14 (comment)
1 parent a429725 commit 239d86b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

β€Ž.github/workflows/code-quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- uses: actions/setup-node@v2
2020
with:
21-
node-version: 14
21+
node-version: 16
2222

2323
- name: "Cache node_modules"
2424
uses: actions/cache@v2

β€Ž.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14
1+
16

β€ŽREADME.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ We welcome PRs to add projects to the Rich / Textual galleries. Can't promise we
66

77
## Start dev server for maintaining purpose
88

9-
You will need Node.js (version 14, as newer versions are not supported by our hosting platform at the moment) to run the site locally.
9+
You will need Node.js (version 16 to run the site locally.
1010
Using [nvm](https://github.com/nvm-sh/nvm#intro) is the recommended way to install such a version. Once it is installed, you can run the following commands:
1111

12-
- `nvm install 14 && nvm use 14` - installs Node.js v14
12+
- `nvm install 16 && nvm use 16` - installs Node.js v14
1313
- `npm i` - installs the Node.js dependencies
1414
- `npm run dev` - starts the local development server
1515

β€Žpackage-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpackage.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"private": true,
33
"name": "Textualize.io",
44
"engines": {
5-
"node": "14.x"
5+
"node": "16.x"
66
},
77
"scripts": {
88
"dev": "next dev",

0 commit comments

Comments
Β (0)