@mono-labs/cli 0.0.160 → 0.0.161
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.
|
@@ -146,12 +146,12 @@ export function buildCommands(files) {
|
|
|
146
146
|
mergeData({ ...optionVals, arg: argVal });
|
|
147
147
|
await runHasteCommand(configObject, optionVals);
|
|
148
148
|
} catch (err) {
|
|
149
|
-
console.error('Error executing mono command:', err);
|
|
149
|
+
console.error('Error executing mono command:', err.message);
|
|
150
150
|
}
|
|
151
151
|
});
|
|
152
152
|
});
|
|
153
153
|
} catch (err) {
|
|
154
|
-
console.error('Error executing mono command:', err);
|
|
154
|
+
console.error('Error executing mono command:', err.message);
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
157
|
|