node-abi 2.5.0 → 2.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +5 -3
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -54,7 +54,7 @@ var supportedTargets = [
54
54
  {runtime: 'node', target: '7.0.0', abi: '51', lts: false},
55
55
  {runtime: 'node', target: '8.0.0', abi: '57', lts: new Date() < new Date(2019, 4, 31)},
56
56
  {runtime: 'node', target: '9.0.0', abi: '59', lts: false},
57
- {runtime: 'node', target: '10.0.0', abi: '64', lts: new Date(2018, 10, 1) < new Date() < new Date(2020, 4, 31)},
57
+ {runtime: 'node', target: '10.0.0', abi: '64', lts: new Date(2018, 10, 1) < new Date() && new Date() < new Date(2020, 4, 31)},
58
58
  {runtime: 'node', target: '11.0.0', abi: '67', lts: false},
59
59
  {runtime: 'electron', target: '0.36.0', abi: '47', lts: false},
60
60
  {runtime: 'electron', target: '1.1.0', abi: '48', lts: false},
@@ -65,7 +65,9 @@ var supportedTargets = [
65
65
  {runtime: 'electron', target: '1.7.0', abi: '54', lts: false},
66
66
  {runtime: 'electron', target: '1.8.0', abi: '57', lts: false},
67
67
  {runtime: 'electron', target: '2.0.0', abi: '57', lts: false},
68
- {runtime: 'electron', target: '3.0.0', abi: '64', lts: false}
68
+ {runtime: 'electron', target: '3.0.0', abi: '64', lts: false},
69
+ {runtime: 'electron', target: '4.0.0', abi: '64', lts: false},
70
+ {runtime: 'electron', target: '4.0.4', abi: '69', lts: false}
69
71
  ]
70
72
 
71
73
  var additionalTargets = [
@@ -95,7 +97,7 @@ var deprecatedTargets = [
95
97
  ]
96
98
 
97
99
  var futureTargets = [
98
- {runtime: 'electron', target: '4.0.0-beta.0', abi: '64', lts: false}
100
+ {runtime: 'electron', target: '5.0.0-beta.0', abi: '68', lts: false}
99
101
  ]
100
102
 
101
103
  var allTargets = deprecatedTargets
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-abi",
3
- "version": "2.5.0",
3
+ "version": "2.7.1",
4
4
  "description": "Get the Node ABI for a given target and runtime, and vice versa.",
5
5
  "main": "index.js",
6
6
  "scripts": {