@hachej/boring-core 0.1.10 → 0.1.13
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/app/server/index.js +3 -1
- package/package.json +4 -4
package/dist/app/server/index.js
CHANGED
|
@@ -377,7 +377,9 @@ async function createCoreWorkspaceAgentServer(options = {}) {
|
|
|
377
377
|
const callerTools = options.getExtraTools ? await options.getExtraTools(ctx) : [];
|
|
378
378
|
return [
|
|
379
379
|
...callerTools,
|
|
380
|
-
...createWorkspaceUiTools(getUiBridge(ctx.workspaceId), {
|
|
380
|
+
...createWorkspaceUiTools(getUiBridge(ctx.workspaceId), {
|
|
381
|
+
workspaceRoot: ctx.workspaceFsCapability === "strong" ? ctx.workspaceRoot : void 0
|
|
382
|
+
})
|
|
381
383
|
];
|
|
382
384
|
},
|
|
383
385
|
sandboxHandleStore: options.sandboxHandleStore ?? new WorkspaceRuntimeSandboxHandleStore(workspaceStore),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hachej/boring-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Foundation package for boring-ui-v2 apps: DB, auth, config, HTTP app factory, and frontend app shell.",
|
|
@@ -78,9 +78,9 @@
|
|
|
78
78
|
"react-router-dom": "^7.14.2",
|
|
79
79
|
"smol-toml": "^1.6.1",
|
|
80
80
|
"zod": "^3.25.76",
|
|
81
|
-
"@hachej/boring-agent": "0.1.
|
|
82
|
-
"@hachej/boring-ui-kit": "0.1.
|
|
83
|
-
"@hachej/boring-workspace": "0.1.
|
|
81
|
+
"@hachej/boring-agent": "0.1.13",
|
|
82
|
+
"@hachej/boring-ui-kit": "0.1.13",
|
|
83
|
+
"@hachej/boring-workspace": "0.1.13"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@testing-library/jest-dom": "^6.9.1",
|