@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 +9 -4
- package/dist/index.js +1 -1
- package/dist/internal/interfaces/obsidian/services/build.service.d.ts +1 -0
- package/dist/internal/interfaces/obsidian/services/serve.service.d.ts +1 -0
- package/dist/obsidian/mobile.js +1 -1
- package/dist/worker/pool-manager.js +1 -2
- package/dist/worker/worker-node.js +1 -2
- package/package.json +1 -1
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: "
|
|
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
|
-
|
|
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.
|
|
55323
|
+
const version = "26.4.17";
|
|
55319
55324
|
return {
|
|
55320
55325
|
success: true,
|
|
55321
55326
|
message: `MDFriday CLI v${version}`
|