Doc: Refer to Node versions without "v" prefix

As of Node.js version 8, upstream has consistently avoided this
to avoid confusion with V8, the JavaScript engine that power
Node.js and Chromium.

Change-Id: I702cee3247cc69ab4aac313176c884c9c2785ea9
This commit is contained in:
Timo Tijhof 2019-06-10 17:28:53 +01:00
parent 8c3c943468
commit a3796a24ee
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ NOTE: This project requires a different version of Node then the main Popups pro
(`cd .storybook && nvm use`)
This project is configured to run separately from the main Popups project
because it requires at least Node v8.4, whereas Popups (currently)
because it requires at least Node 8.4, whereas Popups (currently)
runs Node 6 for consistency with C.I.
When the Popups Node version is upgraded, the Storybook dependencies

View file

@ -73,8 +73,8 @@ a separate NPM project using the [Storybook.js](https://storybook.js.org/) UI fr
This framework provides an environment that showcases all possible permutations of popups,
without the state-management constraints of having only one popup per page.
This framework requires Node v8 (because of the spread `...` operator) and is therefore
separated from the main package.json until CI upgrades from Node v6. NVM can be used to
This framework requires Node 8 (because of the spread `...` operator) and is therefore
separated from the main package.json until CI upgrades from Node 6. NVM can be used to
manage multiple Node versions to run the Storybook app (`cd .storybook && nvm use`).
See the .storybook/README.md for details.