@rubytech/taskmaster 1.0.53 → 1.0.54

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.
@@ -6,7 +6,7 @@
6
6
  <title>Taskmaster Control</title>
7
7
  <meta name="color-scheme" content="dark light" />
8
8
  <link rel="icon" type="image/png" href="./favicon.png" />
9
- <script type="module" crossorigin src="./assets/index-BY1YsAT8.js"></script>
9
+ <script type="module" crossorigin src="./assets/index-DC6oJyqi.js"></script>
10
10
  <link rel="stylesheet" crossorigin href="./assets/index-Cgt8wQ9f.css">
11
11
  </head>
12
12
  <body>
@@ -140,6 +140,9 @@ export const updateHandlers = {
140
140
  const ok = step.exitCode === 0 || step.exitCode === null;
141
141
  const logFn = ok ? log.info.bind(log) : log.error.bind(log);
142
142
  logFn(`update step ${step.index + 1}/${step.total}: ${step.name} ${ok ? "ok" : `FAILED (exit ${step.exitCode})`} (${step.durationMs}ms)`);
143
+ if (!ok && step.stderrTail) {
144
+ log.error(`update step ${step.name} stderr:\n${step.stderrTail}`);
145
+ }
143
146
  context.broadcast("update.progress", {
144
147
  phase: "step-done",
145
148
  name: step.name,
@@ -147,6 +150,7 @@ export const updateHandlers = {
147
150
  total: step.total,
148
151
  durationMs: step.durationMs,
149
152
  ok,
153
+ ...(ok ? {} : { error: step.stderrTail ?? null }),
150
154
  });
151
155
  },
152
156
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rubytech/taskmaster",
3
- "version": "1.0.53",
3
+ "version": "1.0.54",
4
4
  "description": "AI-powered business assistant for small businesses",
5
5
  "publishConfig": {
6
6
  "access": "public"