Skip to content

Commit

Permalink
fix(Node): Add support for Node 9
Browse files Browse the repository at this point in the history
  • Loading branch information
lgeiger committed Nov 1, 2017
1 parent 4895479 commit 47eca66
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,12 @@ function getTarget (abi, runtime) {
}

var supportedTargets = [
{runtime: 'node', target: '4.0.0', abi: '46', lts: new Date() < new Date(2017, 4, 1)},
{runtime: 'node', target: '4.0.0', abi: '46', lts: false},
{runtime: 'node', target: '5.0.0', abi: '47', lts: false},
{runtime: 'node', target: '6.0.0', abi: '48', lts: new Date() < new Date(2018, 4, 18)},
{runtime: 'node', target: '7.0.0', abi: '51', lts: false},
{runtime: 'node', target: '8.0.0', abi: '57', lts: false},
{runtime: 'node', target: '9.0.0', abi: '59', lts: new Date() < new Date(2019, 12, 31)},
{runtime: 'electron', target: '0.36.0', abi: '47', lts: false},
{runtime: 'electron', target: '1.1.0', abi: '48', lts: false},
{runtime: 'electron', target: '1.3.0', abi: '49', lts: false},
Expand Down

0 comments on commit 47eca66

Please sign in to comment.