@mdfriday/foundry 26.4.15 → 26.4.17

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
@@ -429,7 +429,6 @@ var init_logger = __esm({
429
429
  entry.caller = caller;
430
430
  }
431
431
  const output = this.config.jsonFormat ? JSON.stringify(entry) : this.formatPlainText(entry);
432
- console.log(output);
433
432
  if (level === "error" /* ERROR */ || level === "fatal" /* FATAL */) {
434
433
  process.stderr.write(output + "\n");
435
434
  } else {
@@ -516,7 +515,7 @@ var init_manager = __esm({
516
515
  loggers;
517
516
  constructor() {
518
517
  this.globalConfig = {
519
- level: "debug" /* DEBUG */,
518
+ level: "error" /* ERROR */,
520
519
  enableCaller: true,
521
520
  jsonFormat: true
522
521
  };
@@ -3860,7 +3859,13 @@ var init_workspace_factory = __esm({
3860
3859
  log5.warn("Symlink creation failed, falling back to file copy", { error });
3861
3860
  try {
3862
3861
  await this.fileSystemRepo.copyFile(sourceFilePath, targetFilePath);
3863
- log5.info("Copied file as fallback", { source: sourceFilePath, target: targetFilePath });
3862
+ useSymlink = false;
3863
+ fileLink = { source: sourceFilePath, target: targetFilePath };
3864
+ log5.info("Copied file as fallback", {
3865
+ source: sourceFilePath,
3866
+ target: targetFilePath,
3867
+ isSymlink: false
3868
+ });
3864
3869
  } catch (copyError) {
3865
3870
  log5.error("Failed to copy file", copyError);
3866
3871
  throw new Error(`Failed to create file link or copy: ${copyError.message}`);
@@ -55315,7 +55320,7 @@ For more information, visit: https://help.mdfriday.com
55315
55320
  * Show version
55316
55321
  */
55317
55322
  showVersion() {
55318
- const version = "26.4.15";
55323
+ const version = "26.4.17";
55319
55324
  return {
55320
55325
  success: true,
55321
55326
  message: `MDFriday CLI v${version}`