Skip to content

Commit

Permalink
[v2] Set the minimum node version to 6.0.0 fixes #3943 (#3967)
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleAMathews authored Feb 10, 2018
1 parent db81980 commit 53bbd4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .babel-preset.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function preset(context, options = {}) {

const nodeConfig = {
targets: {
node: PRODUCTION ? 4.0 : "current",
node: PRODUCTION ? 6.0 : "current",
},
}

Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
"rimraf": "^2.6.1"
},
"engines": {
"node": ">4.0.0"
"node": ">6.0.0"
},
"files": [
"./cache-dir",
Expand Down

0 comments on commit 53bbd4c

Please sign in to comment.