Skip to content

Commit

Permalink
Merge pull request #174 from goliney/node-7-support
Browse files Browse the repository at this point in the history
Node v7 support
  • Loading branch information
tschaub authored Oct 28, 2016
2 parents 8f02362 + 05c418b commit 868f13a
Show file tree
Hide file tree
Showing 4 changed files with 2,007 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/node_modules/
.idea
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ node_js:
- "4"
- "5"
- "6"
- "7"
cache:
directories:
- node_modules
Expand Down
3 changes: 2 additions & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ var versions = {
'3.x.x': 'fs-3.0.0.js',
'4.x.x': 'fs-4.0.0.js',
'5.x.x': 'fs-5.0.0.js',
'6.x.x': 'fs-6.3.0.js'
'6.x.x': 'fs-6.3.0.js',
'7.x.x': 'fs-7.0.0.js'
};
var nodeVersion = process.versions.node;
var fsName;
Expand Down
Loading

0 comments on commit 868f13a

Please sign in to comment.