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

Commit a2d2a63

Browse files
committed
Pre-empt support for Node 10
Lets try to avoid the rush of issues when Node 10 is released next month. Node 10 is currently version [`62`][1] but is expected to be [`63`][2] before going stable. We need to pick one because of the ABI breakage betweem 62 and 63. If this bet pays off we save ourselves a bunch of time dealing with installation issues, and avoiding a new release. If we're wrong it's no different to any other major Node release. [1]: https://github.com/nodejs/node/blob/97595739/src/node_version.h#L112 [2]: nodejs/node#19201
1 parent 863f29f commit a2d2a63

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/extensions.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ function getHumanNodeVersion(abi) {
7575
case 53: return 'Electron 1.6.x';
7676
case 57: return 'Node.js 8.x';
7777
case 59: return 'Node.js 9.x';
78+
case 63: return 'Node.js 10.x';
7879
default: return false;
7980
}
8081
}

0 commit comments

Comments
 (0)