headlamp 0.1.20 → 0.1.21
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.cjs +2 -4
- package/dist/cli.cjs.map +2 -2
- package/dist/index.js +2 -4
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -57596,8 +57596,7 @@ module.exports = class BridgeEnv extends NodeEnvironment {
|
|
|
57596
57596
|
const dbgPath = process.env.JEST_BRIDGE_DEBUG_PATH;
|
|
57597
57597
|
this._dbg = (msg) => {
|
|
57598
57598
|
try {
|
|
57599
|
-
if (process.env.JEST_BRIDGE_DEBUG && dbgPath) fs.appendFileSync(dbgPath, String(msg) + '
|
|
57600
|
-
', 'utf8');
|
|
57599
|
+
if (process.env.JEST_BRIDGE_DEBUG && dbgPath) fs.appendFileSync(dbgPath, String(msg) + '\\n', 'utf8');
|
|
57601
57600
|
} catch {}
|
|
57602
57601
|
};
|
|
57603
57602
|
} catch {}
|
|
@@ -57628,8 +57627,7 @@ module.exports = class BridgeEnv extends NodeEnvironment {
|
|
|
57628
57627
|
} catch {
|
|
57629
57628
|
line += JSON.stringify({ type: String(payload && payload.type || 'unknown') });
|
|
57630
57629
|
}
|
|
57631
|
-
stderr.write(line + '
|
|
57632
|
-
');
|
|
57630
|
+
stderr.write(line + '\\n');
|
|
57633
57631
|
} catch {}
|
|
57634
57632
|
};
|
|
57635
57633
|
// Expose to class methods (e.g., handleTestEvent). Also keep a safe fallback.
|