node-abi 2.12.0 → 2.16.0

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 +7 -4
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -52,11 +52,13 @@ var supportedTargets = [
52
52
  {runtime: 'node', target: '5.0.0', abi: '47', lts: false},
53
53
  {runtime: 'node', target: '6.0.0', abi: '48', lts: false},
54
54
  {runtime: 'node', target: '7.0.0', abi: '51', lts: false},
55
- {runtime: 'node', target: '8.0.0', abi: '57', lts: new Date() < new Date(2019, 4, 31)},
55
+ {runtime: 'node', target: '8.0.0', abi: '57', lts: false},
56
56
  {runtime: 'node', target: '9.0.0', abi: '59', lts: false},
57
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
- {runtime: 'node', target: '12.0.0', abi: '72', lts: false},
59
+ {runtime: 'node', target: '12.0.0', abi: '72', lts: new Date(2019, 9, 21) < new Date() && new Date() < new Date(2020, 9, 31)},
60
+ {runtime: 'node', target: '13.0.0', abi: '79', lts: false},
61
+ {runtime: 'node', target: '14.0.0', abi: '83', lts: false},
60
62
  {runtime: 'electron', target: '0.36.0', abi: '47', lts: false},
61
63
  {runtime: 'electron', target: '1.1.0', abi: '48', lts: false},
62
64
  {runtime: 'electron', target: '1.3.0', abi: '49', lts: false},
@@ -71,7 +73,8 @@ var supportedTargets = [
71
73
  {runtime: 'electron', target: '4.0.4', abi: '69', lts: false},
72
74
  {runtime: 'electron', target: '5.0.0', abi: '70', lts: false},
73
75
  {runtime: 'electron', target: '6.0.0', abi: '73', lts: false},
74
- {runtime: 'electron', target: '7.0.0', abi: '75', lts: false}
76
+ {runtime: 'electron', target: '7.0.0', abi: '75', lts: false},
77
+ {runtime: 'electron', target: '8.0.0', abi: '76', lts: false}
75
78
  ]
76
79
 
77
80
  var additionalTargets = [
@@ -101,7 +104,7 @@ var deprecatedTargets = [
101
104
  ]
102
105
 
103
106
  var futureTargets = [
104
- {runtime: 'electron', target: '8.0.0-beta.0', abi: '76', lts: false}
107
+ {runtime: 'electron', target: '9.0.0-beta.1', abi: '80', lts: false}
105
108
  ]
106
109
 
107
110
  var allTargets = deprecatedTargets
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-abi",
3
- "version": "2.12.0",
3
+ "version": "2.16.0",
4
4
  "description": "Get the Node ABI for a given target and runtime, and vice versa.",
5
5
  "main": "index.js",
6
6
  "scripts": {