@hachej/boring-agent 0.1.69 → 0.1.71
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/server/index.js +7 -0
- package/package.json +4 -4
package/dist/server/index.js
CHANGED
|
@@ -557,6 +557,13 @@ function createNodeWatcher(root) {
|
|
|
557
557
|
return { ok: false, reason: "workspace_too_large", message };
|
|
558
558
|
}
|
|
559
559
|
startFsw();
|
|
560
|
+
if (fsw) {
|
|
561
|
+
await new Promise((resolve10) => {
|
|
562
|
+
fsw.once("ready", resolve10);
|
|
563
|
+
fsw.once("error", () => resolve10());
|
|
564
|
+
});
|
|
565
|
+
}
|
|
566
|
+
if (closed) return { ok: false, reason: "closed" };
|
|
560
567
|
return { ok: true };
|
|
561
568
|
})();
|
|
562
569
|
return readiness;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hachej/boring-agent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.71",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Pane-embeddable coding agent. Ships direct/local/vercel-sandbox execution modes behind one interface.",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"@streamdown/mermaid": "^1.0.2",
|
|
63
63
|
"@tanstack/react-query": "^5.101.1",
|
|
64
64
|
"@vercel/blob": "^2.5.0",
|
|
65
|
-
"@vercel/sandbox": "2.
|
|
65
|
+
"@vercel/sandbox": "2.3.0",
|
|
66
66
|
"ai": "^7.0.2",
|
|
67
67
|
"chokidar": "^5.0.0",
|
|
68
68
|
"class-variance-authority": "^0.7.1",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"use-stick-to-bottom": "^1.1.6",
|
|
80
80
|
"yaml": "^2.9.0",
|
|
81
81
|
"zod": "^3.25.76",
|
|
82
|
-
"@hachej/boring-ui-kit": "0.1.
|
|
82
|
+
"@hachej/boring-ui-kit": "0.1.71"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
85
|
"@antithesishq/bombadil": "0.6.1",
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"tsup": "^8.4.0",
|
|
97
97
|
"tsx": "^4.22.4",
|
|
98
98
|
"typescript": "^6.0.3",
|
|
99
|
-
"vite": "^
|
|
99
|
+
"vite": "^8.1.2",
|
|
100
100
|
"vitest": "^4.1.9"
|
|
101
101
|
},
|
|
102
102
|
"peerDependencies": {
|