@mdfriday/foundry 26.3.1 → 26.3.2

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/dist/cli.js CHANGED
@@ -424,6 +424,7 @@ var init_logger = __esm({
424
424
  entry.caller = caller;
425
425
  }
426
426
  const output = this.config.jsonFormat ? JSON.stringify(entry) : this.formatPlainText(entry);
427
+ console.log(output);
427
428
  if (level === "error" /* ERROR */ || level === "fatal" /* FATAL */) {
428
429
  process.stderr.write(output + "\n");
429
430
  } else {
@@ -54465,7 +54466,7 @@ For more information, visit: https://help.mdfriday.com
54465
54466
  * Show version
54466
54467
  */
54467
54468
  showVersion() {
54468
- const version = "26.3.1";
54469
+ const version = "26.3.2";
54469
54470
  return {
54470
54471
  success: true,
54471
54472
  message: `MDFriday CLI v${version}`