Skip to content

Commit 92e1f78

Browse files
authored
Merge pull request #636 from jbottigliero/specify-node-version
Specify NodeJS version for contributing to documentation.
2 parents aebd77e + 561b48c commit 92e1f78

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ From adding an issue for a documentation suggestion to creating a pull request:
55
## Setup
66

77
* Install [Node.js](https://nodejs.org/) if you have not already.
8-
*Note: Node 4-6 is required for "best results".*. Node 7 may have issues!
8+
*Note: Node 6.9.* is required for "best results".*. Node 7 may have issues!
99
* Fork the **webpack.js.org** repo at [https://github.com/webpack/webpack.js.org](https://github.com/webpack/webpack.js.org).
1010
* `git clone <your-clone-url> && cd webpack.js.org`
1111
* `npm install`

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
"bugs": {
2121
"url": "https://github.com/webpack/webpack.js.org/issues"
2222
},
23+
"engines": {
24+
"node": ">=6.9"
25+
},
2326
"scripts": {
2427
"start": "npm run init:generated && node ./bootstrap.js",
2528
"build": "npm run init:generated && rm -rf build/ && node ./bootstrap.js && npm run sitemap && echo webpack.js.org > build/CNAME",

0 commit comments

Comments
 (0)