open-agents-ai 0.184.98 → 0.184.99
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/index.js +4 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -66584,6 +66584,8 @@ Rationale: ${proposal.rationale}${provenanceNote}`;
|
|
|
66584
66584
|
}
|
|
66585
66585
|
}
|
|
66586
66586
|
function writeContent(fn) {
|
|
66587
|
+
if (!statusBar.isActive)
|
|
66588
|
+
return;
|
|
66587
66589
|
if (isNeovimActive()) {
|
|
66588
66590
|
const origWrite = process.stdout.write;
|
|
66589
66591
|
let captured = "";
|
|
@@ -66628,6 +66630,8 @@ Rationale: ${proposal.rationale}${provenanceNote}`;
|
|
|
66628
66630
|
}
|
|
66629
66631
|
}
|
|
66630
66632
|
async function writeContentAsync(fn) {
|
|
66633
|
+
if (!statusBar.isActive)
|
|
66634
|
+
return fn();
|
|
66631
66635
|
if (isNeovimActive()) {
|
|
66632
66636
|
const origWrite = process.stdout.write;
|
|
66633
66637
|
let captured = "";
|
package/package.json
CHANGED