claude-task-worker 0.71.0 → 0.73.0
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/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -169,7 +169,7 @@ function sanitizeLogText(text) {
|
|
|
169
169
|
function buildLogTableLines(entries) {
|
|
170
170
|
if (entries.length === 0) return [];
|
|
171
171
|
const maxTextWidth = 100;
|
|
172
|
-
const rows = entries.map((e) => {
|
|
172
|
+
const rows = [...entries].reverse().map((e) => {
|
|
173
173
|
const text = sanitizeLogText(e.text);
|
|
174
174
|
return [
|
|
175
175
|
formatTime(e.time),
|