claude-task-worker 0.70.0 → 0.72.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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. 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),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-task-worker",
3
- "version": "0.70.0",
3
+ "version": "0.72.0",
4
4
  "description": "CLI tool that polls GitHub Issues/PRs and delegates work to Claude CLI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",