node-bin-gen 11.2.2 → 11.2.3

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 +2 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -135,7 +135,7 @@ async function buildArchPackage(os, cpu, version, pre) {
135
135
  `${base}/node.exe`,
136
136
  ]);
137
137
 
138
- if (running.stderr) console.warn(running.stderr);
138
+ if (running.stderr) console.warn("error from unzip", running.stderr);
139
139
 
140
140
  await unlink(filename);
141
141
  } else {
@@ -202,6 +202,7 @@ async function main() {
202
202
  "linux-x64",
203
203
  "linux-x86",
204
204
  "sunos-x64",
205
+ "win-arm64",
205
206
  "win-x64",
206
207
  "win-x86",
207
208
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-bin-gen",
3
- "version": "11.2.2",
3
+ "version": "11.2.3",
4
4
  "description": "Generate a node binary package",
5
5
  "author": "Aria Stewart <aredridel@dinhe.net>",
6
6
  "main": "index.js",