pi-fabric 0.96.0 → 0.96.1
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 +1 -1
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4807,7 +4807,7 @@ var FabricWidget = class {
|
|
|
4807
4807
|
for (const job of [...liveShells, ...recentShells].slice(0, 3)) {
|
|
4808
4808
|
const elapsed2 = formatDuration((job.finishedAt ?? snapshot.now) - job.startedAt) || "0s";
|
|
4809
4809
|
const status = job.stopping ? "stopping" : job.monitor && !job.finishedAt ? `monitor:${job.monitor.delivery}` : job.status;
|
|
4810
|
-
lines.push(
|
|
4810
|
+
lines.push(this.theme.fg("dim", ` ${job.id.slice(0, 8)} ${status} \xB7 ${elapsed2} \xB7 ${safeText(job.description ?? job.command)}`));
|
|
4811
4811
|
}
|
|
4812
4812
|
if (liveShells.length + recentShells.length > 3) lines.push(this.theme.fg("dim", ` +${liveShells.length + recentShells.length - 3} more shell tasks`));
|
|
4813
4813
|
lines.push(
|