docs: update Node.js supported version statement (#41820)

Update the statement expressing Angular's supported versions of Node.js. Previously, we stated
that the `current` version of Node.js was supported, however Node.js's `current` version maps
more closely to what we would term a `next` branch and is not expected meant for usage with
production applications. This intention is stated on Node.js Releases page:

> Production applications should only use Active LTS or Maintenance LTS releases.

PR Close #41820
This commit is contained in:
Joey Perrott 2021-04-26 11:03:03 -07:00 committed by Misko Hevery
parent 6d7d659919
commit 4dae97de43
1 changed files with 3 additions and 3 deletions

View File

@ -30,12 +30,12 @@ To install Angular on your local system, you need the following:
{@a nodejs}
* **Node.js**
Angular requires a [current, active LTS, or maintenance LTS](https://nodejs.org/about/releases) version of Node.js.
Angular requires an [active LTS or maintenance LTS](https://nodejs.org/about/releases) version of Node.js.
<div class="alert is-helpful">
For information about specific version requirements, see the `engines` key in the [package.json](https://unpkg.com/@angular/cli/package.json) file.
For information about specific version requirements, see the `engines` key in the [package.json](https://unpkg.com/browse/@angular/core/package.json) file.
</div>