Skip to content

Commit

Permalink
feat: indicate Node 12 is an LTS release
Browse files Browse the repository at this point in the history
  • Loading branch information
shiftkey authored and mafintosh committed Nov 27, 2019
1 parent efa7539 commit 70a1728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ var supportedTargets = [
{runtime: 'node', target: '9.0.0', abi: '59', lts: false},
{runtime: 'node', target: '10.0.0', abi: '64', lts: new Date(2018, 10, 1) < new Date() && new Date() < new Date(2020, 4, 31)},
{runtime: 'node', target: '11.0.0', abi: '67', lts: false},
{runtime: 'node', target: '12.0.0', abi: '72', lts: false},
{runtime: 'node', target: '12.0.0', abi: '72', lts: new Date(2019, 9, 21) < new Date() && new Date() < new Date(2020, 9, 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 70a1728

Please sign in to comment.