Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Add Node 7 as a supported environment
Browse files Browse the repository at this point in the history
  • Loading branch information
xzyfer committed Oct 25, 2016
1 parent 360a430 commit bd6d7a3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
language: node_js
node_js:
- "7"
- "6"
- "4"
- "0.12"
Expand Down
2 changes: 2 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
- nodejs_version: 4
- nodejs_version: 5
- nodejs_version: 6
- nodejs_version: 7

install:
- ps: Install-Product node $env:nodejs_version $env:platform
Expand Down Expand Up @@ -113,6 +114,7 @@
- nodejs_version: 0.12
- nodejs_version: 4
- nodejs_version: 6
- nodejs_version: 7

install:
- ps: Install-Product node $env:nodejs_version $env:platform
Expand Down
1 change: 1 addition & 0 deletions lib/extensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ function getHumanNodeVersion(abi) {
case 46: return 'Node.js 4.x';
case 47: return 'Node.js 5.x';
case 48: return 'Node.js 6.x';
case 51: return 'Node.js 7.x';
default: return false;
}
}
Expand Down

2 comments on commit bd6d7a3

@anaibol
Copy link
Contributor

@anaibol anaibol commented on bd6d7a3 Oct 28, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, shouldn't this be pushed on npm? Thanks!

@xzyfer
Copy link
Contributor Author

@xzyfer xzyfer commented on bd6d7a3 Oct 29, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See #1766

Please sign in to comment.