From 82dc901c6876660cc5253f598afb157f2935f297 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Tue, 31 Oct 2017 16:31:30 -0400 Subject: [PATCH] Install: Add Node 9 detection Removed 55 since it was part of a prerelease Node 8 only --- lib/extensions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/extensions.js b/lib/extensions.js index 8681be11a..37aea1f81 100644 --- a/lib/extensions.js +++ b/lib/extensions.js @@ -72,8 +72,8 @@ function getHumanNodeVersion(abi) { case 50: return 'Electron 1.4.x'; case 51: return 'Node.js 7.x'; case 53: return 'Electron 1.6.x'; - case 55: return 'Node.js 8.x'; case 57: return 'Node.js 8.x'; + case 59: return 'Node.js 9.x'; default: return false; } }