getgloss 0.12.1 → 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 +2 -2
- package/dist/cli/index.js.map +1 -1
- package/dist/server/daemon.js +125 -13
- package/dist/server/daemon.js.map +1 -1
- package/dist/web/assets/index-DaWYZTKT.js +307 -0
- package/dist/web/assets/{syntax-UR_bDbhr.js → syntax-CqkLY5rX.js} +1 -1
- package/dist/web/index.html +1 -1
- package/package.json +1 -1
- package/dist/web/assets/index-BYtByjSm.js +0 -306
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.
|
|
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
|
|
2751
|
+
throw new Error(`watch timed out after ${timeoutSeconds} seconds`);
|
|
2752
2752
|
}
|
|
2753
2753
|
if (!isReconnectableWatchError(error)) {
|
|
2754
2754
|
throw error;
|