@bobfrankston/msger 0.1.404 → 0.1.406
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/msger-native/bin/msgernative.exe +0 -0
- package/package.json +1 -1
- package/shower.js +7 -1
|
Binary file
|
package/package.json
CHANGED
package/shower.js
CHANGED
|
@@ -411,9 +411,15 @@ function createMessageBoxHandle(options) {
|
|
|
411
411
|
child.stdout?.on('data', (data) => {
|
|
412
412
|
stdout += data.toString();
|
|
413
413
|
});
|
|
414
|
-
// Collect stderr
|
|
414
|
+
// Collect stderr for the exit-code error message AND forward it live
|
|
415
|
+
// to the parent's stderr, same as showService does. Collect-only meant
|
|
416
|
+
// a popout's `[msger-focus]` / `[msger]` diagnostics never reached the
|
|
417
|
+
// host log unless the process died nonzero — an invisible window for
|
|
418
|
+
// exactly the "window opened but focus is wrong" class of report
|
|
419
|
+
// (cost a debugging round-trip on rmfmail 2026-07-19).
|
|
415
420
|
child.stderr?.on('data', (data) => {
|
|
416
421
|
stderr += data.toString();
|
|
422
|
+
process.stderr.write(data);
|
|
417
423
|
});
|
|
418
424
|
// Handle process completion
|
|
419
425
|
child.on('close', (code) => {
|