Skip to content

Commit 76fbf88

Browse files
nwerosamaJiralite
authored andcommitted
docs: Update Node.js requirement to 16.11.0 (discordjs#9764)
* Update Node.js requirement in README file * chore: update the rest of files with nodejs 16.11.0 * Update 03-updating-to-v14.mdx --------- Co-authored-by: Jiralite <[email protected]>
1 parent 5dccdf0 commit 76fbf88

File tree

33 files changed

+37
-37
lines changed

33 files changed

+37
-37
lines changed

.github/ISSUE_TEMPLATE/01-package_bug_report.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ body:
6161
label: Versions
6262
description: List necessary versions here. This includes your package version, runtime version, operating system etc.
6363
placeholder: |
64-
- discord.js 14.9.0 (`npm ls discord.js` or another package)
65-
- Node.js 16.9.0 (`node --version`)
66-
- TypeScript 5.0.4 (`npm ls typescript` if you use it)
64+
- discord.js 14.12.1 (`npm ls discord.js` or another package)
65+
- Node.js 16.11.0 (`node --version`)
66+
- TypeScript 5.1.6 (`npm ls typescript` if you use it)
6767
- macOS Ventura 13.3.1
6868
validations:
6969
required: true

apps/guide/src/content/02-installations-and-preparations/01-installing-node-discordjs.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ category: Installations and preparations
77

88
## Installing Node.js
99

10-
To use discord.js, you'll need to install [Node.js](https://nodejs.org/). discord.js v14 requires Node v16.9.0 or higher.
10+
To use discord.js, you'll need to install [Node.js](https://nodejs.org/). discord.js v14 requires Node v16.11.0 or higher.
1111

1212
<Alert title="Tip" type="success">
1313
To check if you already have Node installed on your machine \(e.g., if you're using a VPS\), run _`node -v`_ in your
14-
terminal. If it outputs _`v16.9.0`_ or higher, then you're good to go! Otherwise, continue reading.
14+
terminal. If it outputs _`v16.11.0`_ or higher, then you're good to go! Otherwise, continue reading.
1515
</Alert>
1616

1717
On Windows, it's as simple as installing any other program. Download the latest version from [the Node.js website](https://nodejs.org/), open the downloaded file, and follow the steps from the installer.
@@ -48,7 +48,7 @@ On macOS, either:
4848

4949
On Linux, you can quickly open the terminal with <kbd>Ctrl + Alt + T</kbd>.
5050

51-
With the terminal open, run the _`node -v`_ command to make sure you've successfully installed Node.js. If it outputs _`v16.9.0`_ or higher, great!
51+
With the terminal open, run the _`node -v`_ command to make sure you've successfully installed Node.js. If it outputs _`v16.11.0`_ or higher, great!
5252

5353
### Initiating a project folder
5454

apps/guide/src/content/05-additional-info/03-updating-to-v14.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ category: Additional info
77

88
## Before you start
99

10-
v14 requires Node 16.9 or higher to use, so make sure you're up to date. To check your Node.js version, use _`node --version`_ in your terminal or command prompt, and if it's not high enough, update it! There are many resources online to help you with this step based on your host system.
10+
v14 requires Node 16.11 or higher to use, so make sure you're up to date. To check your Node.js version, use _`node --version`_ in your terminal or command prompt, and if it's not high enough, update it! There are many resources online to help you with this step based on your host system.
1111

1212
### Various packages are now included in v14
1313

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"yaml@^2.1.1": "patch:yaml@npm%3A2.2.2#./.yarn/patches/yaml-npm-2.2.2-6e3cddb343.patch"
7272
},
7373
"engines": {
74-
"node": ">=16.9.0"
74+
"node": ">=16.11.0"
7575
},
7676
"workspaces": [
7777
"apps/*",

packages/actions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@
6161
"vitest": "^0.34.1"
6262
},
6363
"engines": {
64-
"node": ">=16.9.0"
64+
"node": ">=16.11.0"
6565
}
6666
}

packages/api-extractor-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"typescript": "^5.1.6"
4848
},
4949
"engines": {
50-
"node": ">=16.9.0"
50+
"node": ">=16.11.0"
5151
},
5252
"publishConfig": {
5353
"access": "public"

packages/brokers/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
## Installation
2525

26-
**Node.js 16.9.0 or newer is required.**
26+
**Node.js 16.11.0 or newer is required.**
2727

2828
```sh
2929
npm install @discordjs/brokers

packages/brokers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"vitest": "^0.34.1"
7979
},
8080
"engines": {
81-
"node": ">=16.9.0"
81+
"node": ">=16.11.0"
8282
},
8383
"publishConfig": {
8484
"access": "public"

packages/builders/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
## Installation
2525

26-
**Node.js 16.9.0 or newer is required.**
26+
**Node.js 16.11.0 or newer is required.**
2727

2828
```sh
2929
npm install @discordjs/builders

packages/builders/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"vitest": "^0.34.1"
8383
},
8484
"engines": {
85-
"node": ">=16.9.0"
85+
"node": ">=16.11.0"
8686
},
8787
"publishConfig": {
8888
"access": "public"

0 commit comments

Comments
 (0)