open-agents-ai 0.187.210 → 0.187.211
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
|
@@ -327041,6 +327041,10 @@ Rationale: ${proposal.rationale}${provenanceNote}`;
|
|
|
327041
327041
|
process.stdout.on("resize", () => {
|
|
327042
327042
|
statusBar.handleResize();
|
|
327043
327043
|
setTermSize(process.stdout.rows ?? 24, process.stdout.columns ?? 80);
|
|
327044
|
+
try {
|
|
327045
|
+
refreshTuiTasks();
|
|
327046
|
+
} catch {
|
|
327047
|
+
}
|
|
327044
327048
|
if (isNeovimActive()) {
|
|
327045
327049
|
const contentRows = statusBar.isActive ? statusBar.availableContentRows : Math.max(5, termRows() - 6);
|
|
327046
327050
|
resizeNeovim(termCols(), contentRows);
|
package/package.json
CHANGED