Skip to content

Commit

Permalink
Merge pull request #65 from AlexMeah/master
Browse files Browse the repository at this point in the history
Add support for node v4.x

Fixes: #59
  • Loading branch information
tschaub committed Oct 13, 2015
2 parents 133463d + ce11072 commit 2d80493
Show file tree
Hide file tree
Showing 3 changed files with 1,865 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ node_js:
- iojs-v1
- iojs-v2
- iojs-v3
- "4.2"

before_install:
- '[ "${TRAVIS_NODE_VERSION}" != "0.8" ] || npm install -g npm@1.4.28'
Expand Down
3 changes: 2 additions & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ var versions = {
'0.11.15 - 0.12.x': 'fs-0.12.0.js',
'1.x.x': 'fs-1.1.0.js',
'2.x.x': 'fs-2.0.0.js',
'3.x.x': 'fs-3.0.0.js'
'3.x.x': 'fs-3.0.0.js',
'4.x.x': 'fs-4.0.0.js'
};
var nodeVersion = process.versions.node;
var fsName;
Expand Down
Loading

0 comments on commit 2d80493

Please sign in to comment.