node-bin-gen 11.0.0 → 11.1.2

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 -2
  2. package/package.json +1 -2
package/index.js CHANGED
@@ -30,7 +30,7 @@ argparser.option("package-name", {
30
30
  describe: "Use this as the main package name",
31
31
  default: "node",
32
32
  });
33
- argparser.option("verbose", { describe: "output messages" });
33
+ argparser.option("verbose", { describe: "output messages", boolean: true });
34
34
  argparser.version();
35
35
  argparser.demandCommand(
36
36
  1,
@@ -57,7 +57,7 @@ function debug(...args) {
57
57
  ndebug(...args);
58
58
  }
59
59
 
60
- const version = versionprime[0] != "v" ? "v" + versionprime : version;
60
+ const version = versionprime[0] != "v" ? "v" + versionprime : versionprime;
61
61
 
62
62
  async function buildArchPackage(os, cpu, version, pre) {
63
63
  debug("building architecture specific package", os, cpu, version, pre);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-bin-gen",
3
- "version": "11.0.0",
3
+ "version": "11.1.2",
4
4
  "description": "Generate a node binary package",
5
5
  "author": "Aria Stewart <aredridel@dinhe.net>",
6
6
  "main": "index.js",
@@ -15,7 +15,6 @@
15
15
  "node": ">=18.0.0"
16
16
  },
17
17
  "dependencies": {
18
- "make-fetch-happen": "^10.0.3",
19
18
  "rimraf": "^3.0.0",
20
19
  "verror": "^1.9.0",
21
20
  "yargs": "^17.0.1"