npm-pkgbuild 11.1.16 → 11.1.17
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/package.json +1 -1
- package/src/npm-pkgbuild-cli.mjs +2 -2
package/package.json
CHANGED
package/src/npm-pkgbuild-cli.mjs
CHANGED
|
@@ -31,12 +31,12 @@ allInputs.forEach(i => program.option(`--${i.name}`, i.description));
|
|
|
31
31
|
|
|
32
32
|
program
|
|
33
33
|
.option("--verbose", "be more verbose", false)
|
|
34
|
-
.option("--dry", "do not execut only print definitions", false)
|
|
34
|
+
.option("--dry", "do not execut, only print definitions", false)
|
|
35
35
|
.option("-D --define <a=b>", "define property", (str, former = {}) =>
|
|
36
36
|
Object.assign(former, Object.fromEntries([str.split(/=/)]))
|
|
37
37
|
)
|
|
38
38
|
.option("-p --dir <dir>", "which package to use", process.cwd())
|
|
39
|
-
.option("-a --available", "only execute availabe output
|
|
39
|
+
.option("-a --available", "only execute availabe output/arch combintions", false)
|
|
40
40
|
.option("--continue", "continue on error")
|
|
41
41
|
.option(
|
|
42
42
|
"-c --content <dir>",
|