getgloss 0.12.0 → 0.12.3

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/cli/index.js CHANGED
@@ -30,7 +30,7 @@ import path from "path";
30
30
  // package.json
31
31
  var package_default = {
32
32
  name: "getgloss",
33
- version: "0.12.0",
33
+ version: "0.12.3",
34
34
  description: "Local browser-based diff review for coding-agent loops.",
35
35
  type: "module",
36
36
  packageManager: "pnpm@10.33.2",
@@ -2748,7 +2748,7 @@ async function watchReviewWithReconnect(reviewId, initialInfo, timeoutSeconds, o
2748
2748
  return { event, info };
2749
2749
  } catch (error) {
2750
2750
  if (isWatchTimeout(error)) {
2751
- throw error;
2751
+ throw new Error(`watch timed out after ${timeoutSeconds} seconds`);
2752
2752
  }
2753
2753
  if (!isReconnectableWatchError(error)) {
2754
2754
  throw error;