node-abi 3.31.0 → 3.33.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.
- package/.circleci/config.yml +2 -2
- package/.github/CODEOWNERS +1 -0
- package/.github/workflows/update-abi.yml +5 -4
- package/README.md +5 -3
- package/abi_registry.json +8 -1
- package/package.json +4 -4
package/.circleci/config.yml
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
* @electron/wg-ecosystem @electron/wg-releases @electron/wg-upgrades
|
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
name: Auto-update ABI JSON file
|
|
2
2
|
on:
|
|
3
|
+
workflow_dispatch:
|
|
3
4
|
schedule:
|
|
4
5
|
- cron: '0 * * * *'
|
|
5
6
|
jobs:
|
|
6
7
|
autoupdate:
|
|
7
8
|
runs-on: ubuntu-latest
|
|
8
9
|
steps:
|
|
9
|
-
- uses: actions/checkout@
|
|
10
|
-
- uses: actions/setup-node@
|
|
10
|
+
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # tag: v3.3.0
|
|
11
|
+
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # tag: v3.6.0
|
|
11
12
|
with:
|
|
12
13
|
node-version: '12.x'
|
|
13
14
|
- name: Get npm cache directory
|
|
14
15
|
id: npm-cache
|
|
15
16
|
run: |
|
|
16
|
-
echo "
|
|
17
|
-
- uses: actions/cache@
|
|
17
|
+
echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
|
|
18
|
+
- uses: actions/cache@627f0f41f6904a5b1efbaed9f96d9eb58e92e920 # tag: v3.2.4
|
|
18
19
|
with:
|
|
19
20
|
path: ${{ steps.npm-cache.outputs.dir }}
|
|
20
21
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
|
package/README.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
# Node.js ABI
|
|
2
2
|
|
|
3
|
-
[](https://circleci.com/gh/electron/node-abi/tree/main)
|
|
4
|
+
[](https://github.com/electron/node-abi/actions/workflows/update-abi.yml)
|
|
5
|
+
[](https://snyk.io/test/github/electron/node-abi)
|
|
6
|
+
[](https://npmjs.org/package/node-abi)
|
|
4
7
|
|
|
5
|
-
|
|
6
|
-
Get the Node ABI for a given target and runtime, and vice versa.
|
|
8
|
+
Get the Node ABI (application binary interface) for a given target and runtime, and vice versa.
|
|
7
9
|
|
|
8
10
|
## Installation
|
|
9
11
|
```
|
package/abi_registry.json
CHANGED
|
@@ -230,9 +230,16 @@
|
|
|
230
230
|
},
|
|
231
231
|
{
|
|
232
232
|
"abi": "113",
|
|
233
|
-
"future":
|
|
233
|
+
"future": false,
|
|
234
234
|
"lts": false,
|
|
235
235
|
"runtime": "electron",
|
|
236
236
|
"target": "23.0.0-alpha.1"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"abi": "114",
|
|
240
|
+
"future": true,
|
|
241
|
+
"lts": false,
|
|
242
|
+
"runtime": "electron",
|
|
243
|
+
"target": "24.0.0-alpha.1"
|
|
237
244
|
}
|
|
238
245
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-abi",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.33.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": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
12
|
-
"url": "https://github.com/
|
|
12
|
+
"url": "https://github.com/electron/node-abi.git"
|
|
13
13
|
},
|
|
14
14
|
"keywords": [
|
|
15
15
|
"node",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"author": "Lukas Geiger",
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"bugs": {
|
|
24
|
-
"url": "https://github.com/
|
|
24
|
+
"url": "https://github.com/electron/node-abi/issues"
|
|
25
25
|
},
|
|
26
|
-
"homepage": "https://github.com/
|
|
26
|
+
"homepage": "https://github.com/electron/node-abi#readme",
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@continuous-auth/semantic-release-npm": "^3.0.0",
|
|
29
29
|
"got": "^11.8.2",
|