Skip to content

Commit

Permalink
fix(electron): move Electron 2.0 to the supported list (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
malept authored and lgeiger committed May 4, 2018
1 parent 0658601 commit 396db7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ var supportedTargets = [
{runtime: 'electron', target: '1.5.0', abi: '51', lts: false},
{runtime: 'electron', target: '1.6.0', abi: '53', lts: false},
{runtime: 'electron', target: '1.7.0', abi: '54', lts: false},
{runtime: 'electron', target: '1.8.0', abi: '57', lts: false}
{runtime: 'electron', target: '1.8.0', abi: '57', lts: false},
{runtime: 'electron', target: '2.0.0', abi: '57', lts: false}
]

var additionalTargets = [
Expand Down Expand Up @@ -92,7 +93,6 @@ var deprecatedTargets = [
]

var futureTargets = [
{runtime: 'electron', target: '2.0.0', abi: '57', lts: false}
]

var allTargets = deprecatedTargets
Expand Down

2 comments on commit 396db7f

@kwent
Copy link

@kwent kwent commented on 396db7f May 9, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@malept @lgeiger Can we publish the last version on npm ? 🙏

@lgeiger
Copy link
Contributor

@lgeiger lgeiger commented on 396db7f May 9, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is already published as v2.4.1 on mpm: https://www.npmjs.com/package/node-abi

Please sign in to comment.