fix(cli): make args["--json"] state available to print funcs

This commit is contained in:
dragonwocky 2023-07-31 00:53:30 +10:00
parent d3840c5922
commit f61d13ca91
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8

View File

@ -124,10 +124,11 @@ const compileOptsToArgSpec = (options) => {
});
};
let __json;
const printHelp = (commands, options) => {
const { name, version, homepage } = manifest,
usage = `${name} <command> [options]`;
if (args["--json"]) {
if (__json) {
printObject({
name,
version,
@ -150,7 +151,7 @@ const printHelp = (commands, options) => {
}
},
printVersion = () => {
if (args["--json"]) {
if (__json) {
printObject({
[manifest.name]: manifest.version,
node: process.version.slice(1),
@ -208,6 +209,7 @@ try {
const args = arg(compileOptsToArgSpec(options));
if (args["--debug"]) __debug = true;
if (args["--quiet"]) __quiet = true;
if (args["--json"]) __json = true;
if (args["--no"] || args["--quiet"]) __confirmation = "n";
if (args["--yes"]) __confirmation = "y";
if (args["--help"]) printHelp(commands, options), process.exit();
@ -340,7 +342,7 @@ try {
break;
}
case "check": {
if (args["--json"]) {
if (__json) {
printObject({
appPath,
backupPath,