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

Fix Node 10 check #2343

Merged
merged 1 commit into from
Apr 23, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/extensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function getHumanNodeVersion(abi) {
case 53: return 'Electron 1.6.x';
case 57: return 'Node.js 8.x';
case 59: return 'Node.js 9.x';
case 63: return 'Node.js 10.x';
case 64: return 'Node.js 10.x';
default: return false;
}
}
Expand Down