@jhizzard/termdeck 1.3.0 → 1.5.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/README.md +1 -1
- package/package.json +3 -5
- package/packages/cli/src/index.js +2 -2
- package/packages/client/public/app.js +645 -8
- package/packages/client/public/index.html +28 -6
- package/packages/client/public/style.css +136 -0
- package/packages/server/src/database.js +20 -1
- package/packages/server/src/index.js +111 -21
- package/packages/server/src/orchestration-preview.js +1 -1
- package/packages/server/src/session.js +46 -8
- package/packages/server/src/sprint-inject.js +2 -2
|
@@ -233,7 +233,7 @@ async function injectSprintPrompts({
|
|
|
233
233
|
} else {
|
|
234
234
|
anyPending = true;
|
|
235
235
|
}
|
|
236
|
-
} catch {
|
|
236
|
+
} catch (_err) {
|
|
237
237
|
anyPending = true;
|
|
238
238
|
}
|
|
239
239
|
}
|
|
@@ -257,7 +257,7 @@ async function injectSprintPrompts({
|
|
|
257
257
|
const s = await getStatus(lane.sessionId);
|
|
258
258
|
lane.finalStatus = s && s.status ? s.status : lane.finalStatus;
|
|
259
259
|
if (lane.finalStatus === 'thinking') lane.verified = true;
|
|
260
|
-
} catch {
|
|
260
|
+
} catch (_err) {
|
|
261
261
|
// ignore
|
|
262
262
|
}
|
|
263
263
|
}
|