We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92c3008 commit 048793fCopy full SHA for 048793f
lib/interface/cli/commands/root/create.cmd.js
@@ -16,6 +16,7 @@ const get = new Command({
16
weight: 20,
17
},
18
builder: (yargs) => {
19
+ debugger;
20
crudFilenameOption(yargs);
21
return yargs;
22
lib/interface/cli/helpers/general.js
@@ -11,7 +11,7 @@ const printError = (error) => {
11
if ((process.env.DEBUG || '').includes(defaults.DEBUG_PATTERN)) {
12
console.error(error.stack);
13
} else {
14
- console.error(`${error.message}`);
+ console.error(`${error.message} \n ${_.get(error, "cause")} \n`);
15
}
};
0 commit comments