Skip to content

Commit

Permalink
chore(cli): update node LTS message
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdbradley committed Aug 16, 2020
1 parent 4a0690e commit e7a877b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/stencil
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ if (isNodeLT(minimumVersion)) {
currentVersion +
', however Stencil requires v' +
minimumVersion +
'.0 or greater. It is recommended to install latest version of Node (https://nodejs.org/en/about/releases/).\n',
'.0 or greater. It is recommended to use an Active LTS version of Node (https://nodejs.org/en/about/releases/).\n',
);
process.exit(1);
}
Expand All @@ -28,7 +28,7 @@ if (isNodeLT(recommendedVersion)) {
currentVersion +
", however Stencil's recommendation is v" +
recommendedVersion +
'.0 or greater. Note that future versions of Stencil will eventually remove support for non-LTS Node versions (https://nodejs.org/en/about/releases/).\n',
'.0 or greater. Note that future versions of Stencil will eventually remove support for non-LTS Node versions and an Active LTS version is recommended (https://nodejs.org/en/about/releases/).\n',
);
}

Expand Down

0 comments on commit e7a877b

Please sign in to comment.