Skip to content

Commit

Permalink
Fix v0.8.0 compability (issue tomgco#40)
Browse files Browse the repository at this point in the history
`package.json` in the v0.1.6 release requires the node binary to be of version
`>= 0.5 < 0.7`. This meant that when running `npm install gzippo`, npm would
fall back to v0.0.6, which accepts any node version.
  • Loading branch information
evlun committed Jun 26, 2012
1 parent e36a2c1 commit 73eddf3
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 @@ -14,7 +14,7 @@
"compress"
],
"engines": {
"node": ">= 0.5 < 0.7"
"node": ">= 0.5 < 0.9"
},
"scripts": {
"test": "expresso"
Expand Down

0 comments on commit 73eddf3

Please sign in to comment.