@mono-labs/cli 0.0.160 → 0.0.162
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.
|
@@ -89,8 +89,6 @@ export function buildCommands(files) {
|
|
|
89
89
|
current.action(async (arg, cmd) => {
|
|
90
90
|
let envDefaults = {};
|
|
91
91
|
const optionValueList = argInfo.options;
|
|
92
|
-
console.log('argInfo:', argInfo);
|
|
93
|
-
console.log('optionValueList:', optionValueList);
|
|
94
92
|
let actualOptions = optionValueList;
|
|
95
93
|
if (optionValueList) {
|
|
96
94
|
actualOptions =
|
|
@@ -146,12 +144,12 @@ export function buildCommands(files) {
|
|
|
146
144
|
mergeData({ ...optionVals, arg: argVal });
|
|
147
145
|
await runHasteCommand(configObject, optionVals);
|
|
148
146
|
} catch (err) {
|
|
149
|
-
console.error('Error executing mono command:', err);
|
|
147
|
+
console.error('Error executing mono command:', err.message);
|
|
150
148
|
}
|
|
151
149
|
});
|
|
152
150
|
});
|
|
153
151
|
} catch (err) {
|
|
154
|
-
console.error('Error executing mono command:', err);
|
|
152
|
+
console.error('Error executing mono command:', err.message);
|
|
155
153
|
}
|
|
156
154
|
}
|
|
157
155
|
|