@neriros/ralphy 2.13.10 → 2.13.11
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/index.js +20 -7
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -72525,13 +72525,26 @@ function AgentMode({ args, projectRoot, statesDir, tasksDir }) {
|
|
|
72525
72525
|
}, undefined, true, undefined, this)
|
|
72526
72526
|
]
|
|
72527
72527
|
}, undefined, true, undefined, this),
|
|
72528
|
-
pollStatus.filterDesc &&
|
|
72529
|
-
|
|
72530
|
-
|
|
72531
|
-
|
|
72532
|
-
|
|
72533
|
-
]
|
|
72534
|
-
|
|
72528
|
+
pollStatus.filterDesc && (() => {
|
|
72529
|
+
const prefix = "Linear ";
|
|
72530
|
+
const indent = " ".repeat(prefix.length);
|
|
72531
|
+
const full = pollStatus.filterDesc.replace(/, /g, " \xB7 ");
|
|
72532
|
+
const lineWidth = Math.max(20, termWidth - 4);
|
|
72533
|
+
const lines = [];
|
|
72534
|
+
let remaining = full;
|
|
72535
|
+
while (remaining.length > 0) {
|
|
72536
|
+
const budget = lineWidth - (lines.length === 0 ? prefix.length : indent.length);
|
|
72537
|
+
lines.push(remaining.slice(0, budget));
|
|
72538
|
+
remaining = remaining.slice(budget);
|
|
72539
|
+
}
|
|
72540
|
+
return lines.map((segment, i) => /* @__PURE__ */ jsx_dev_runtime9.jsxDEV(Text, {
|
|
72541
|
+
dimColor: true,
|
|
72542
|
+
children: [
|
|
72543
|
+
i === 0 ? prefix : indent,
|
|
72544
|
+
segment
|
|
72545
|
+
]
|
|
72546
|
+
}, i, true, undefined, this));
|
|
72547
|
+
})()
|
|
72535
72548
|
]
|
|
72536
72549
|
}, undefined, true, undefined, this),
|
|
72537
72550
|
/* @__PURE__ */ jsx_dev_runtime9.jsxDEV(Box_default, {
|
package/package.json
CHANGED