Skip to content

Commit

Permalink
fix: Relax required Node version to include Node v4
Browse files Browse the repository at this point in the history
Travis is already setup to test with Node.js v4, however, the node
engine property in package.json requests Node v6. npm will log a warning
when it encounters an engine property that doesn't match, but yarn will
fail the install.
  • Loading branch information
scothis authored and adriantoine committed Oct 12, 2016
1 parent 1b45e28 commit d62b3e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"url": "https://github.com/adriantoine/enzyme-to-json.git"
},
"engines": {
"node": ">=6.0.0"
"node": ">=4.0.0"
},
"license": "MIT",
"dependencies": {
Expand Down

0 comments on commit d62b3e9

Please sign in to comment.