Skip to content

Commit

Permalink
doc: update process.release
Browse files Browse the repository at this point in the history
`process.release` documentation is out of date. This commit makes it up
to date.

PR-URL: #35167
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
schamberg97 authored and ruyadorno committed Sep 17, 2020
1 parent 176e9e4 commit 32d1731
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions doc/api/process.md
Original file line number Diff line number Diff line change
Expand Up @@ -1768,19 +1768,22 @@ tarball.
builds of Node.js and will be missing on all other platforms._
* `lts` {string} a string label identifying the [LTS][] label for this release.
This property only exists for LTS releases and is `undefined` for all other
release types, including _Current_ releases. Currently the valid values are:
* `'Argon'` for the 4.x LTS line beginning with 4.2.0.
* `'Boron'` for the 6.x LTS line beginning with 6.9.0.
* `'Carbon'` for the 8.x LTS line beginning with 8.9.1.
release types, including _Current_ releases.
Valid values include the LTS Release Codenames (including those
that are no longer supported). A non-exhaustive example of
these codenames includes:
* `'Dubnium'` for the 10.x LTS line beginning with 10.13.0.
* `'Erbium'` for the 12.x LTS line beginning with 12.13.0.
For other LTS Release Codenames, see [Node.js Changelog Archive](https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_ARCHIVE.md)

<!-- eslint-skip -->
```js
{
name: 'node',
lts: 'Argon',
sourceUrl: 'https://nodejs.org/download/release/v4.4.5/node-v4.4.5.tar.gz',
headersUrl: 'https://nodejs.org/download/release/v4.4.5/node-v4.4.5-headers.tar.gz',
libUrl: 'https://nodejs.org/download/release/v4.4.5/win-x64/node.lib'
lts: 'Erbium',
sourceUrl: 'https://nodejs.org/download/release/v12.18.1/node-v12.18.1.tar.gz',
headersUrl: 'https://nodejs.org/download/release/v12.18.1/node-v12.18.1-headers.tar.gz',
libUrl: 'https://nodejs.org/download/release/v12.18.1/win-x64/node.lib'
}
```

Expand Down

0 comments on commit 32d1731

Please sign in to comment.