throughline 0.3.14 → 0.3.15
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/package.json +1 -1
- package/src/token-monitor.mjs +3 -1
package/package.json
CHANGED
package/src/token-monitor.mjs
CHANGED
|
@@ -401,9 +401,11 @@ function renderFrame(args) {
|
|
|
401
401
|
}
|
|
402
402
|
}
|
|
403
403
|
} else {
|
|
404
|
+
// runtime cols を毎フレーム出してリサイズ追従状況を可視化する (診断目的、将来削除可)
|
|
405
|
+
const runtimeCols = process.stdout.columns ?? '?';
|
|
404
406
|
const header = color(
|
|
405
407
|
ANSI.bold,
|
|
406
|
-
`[Throughline] ${filtered.length}
|
|
408
|
+
`[Throughline] ${filtered.length} セッション cols=${runtimeCols}${args.all ? ' (--all)' : ''}`,
|
|
407
409
|
);
|
|
408
410
|
lines.push(header);
|
|
409
411
|
const now = Date.now();
|