From 10f9a58ce5f499fb898a9ae77e093cc4e9dc8928 Mon Sep 17 00:00:00 2001 From: xzyfer Date: Tue, 21 Mar 2017 21:24:51 +1100 Subject: [PATCH] Add Node 8 to the support versions lists This is a workaround for nodejs/citgm#389. The install/build flow needs to be updated so that unsupported environments result in an informative warning instead of a failure. --- lib/extensions.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/extensions.js b/lib/extensions.js index 7d5fd9e88..e8c2ffaf5 100644 --- a/lib/extensions.js +++ b/lib/extensions.js @@ -69,6 +69,7 @@ function getHumanNodeVersion(abi) { case 47: return 'Node.js 5.x'; case 48: return 'Node.js 6.x'; case 51: return 'Node.js 7.x'; + case 53: return 'Node.js 8.x'; default: return false; } }