@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 +2 -1
- package/dist/index.js +1 -1
- package/dist/worker/pool-manager.js +1 -0
- package/dist/worker/worker-node.js +1 -0
- package/package.json +1 -1
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.
|
|
54469
|
+
const version = "26.3.2";
|
|
54469
54470
|
return {
|
|
54470
54471
|
success: true,
|
|
54471
54472
|
message: `MDFriday CLI v${version}`
|