@vornrun/mcp 0.7.0-beta.2 → 0.7.0-beta.4
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/index.js +5 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1092,6 +1092,10 @@ function loadDefaults(d) {
|
|
|
1092
1092
|
// user has toggled it, so absence means "not yet decided", not "off".
|
|
1093
1093
|
domBlockRendering: map.domBlockRendering ?? true,
|
|
1094
1094
|
minimalShellPrompt: map.minimalShellPrompt ?? true,
|
|
1095
|
+
// Sessions outlive the window. Default on, same reasoning as above: the key
|
|
1096
|
+
// only appears once the user has turned it off, so absence is "not yet
|
|
1097
|
+
// decided". Read by the main process at quit, not by the renderer.
|
|
1098
|
+
keepSessionsRunning: map.keepSessionsRunning ?? true,
|
|
1095
1099
|
...map.widgetEnabled !== void 0 && { widgetEnabled: map.widgetEnabled },
|
|
1096
1100
|
...map.taskViewMode !== void 0 && {
|
|
1097
1101
|
taskViewMode: map.taskViewMode
|
|
@@ -4370,7 +4374,7 @@ console.warn = (...args) => _origError("[mcp:warn]", ...args);
|
|
|
4370
4374
|
console.error = (...args) => _origError("[mcp:error]", ...args);
|
|
4371
4375
|
async function main() {
|
|
4372
4376
|
configManager.init();
|
|
4373
|
-
const version = true ? "0.7.0-beta.
|
|
4377
|
+
const version = true ? "0.7.0-beta.4" : createRequire(import.meta.url)("../package.json").version;
|
|
4374
4378
|
const server = createMcpServer(version);
|
|
4375
4379
|
const transport = new StdioServerTransport();
|
|
4376
4380
|
await server.connect(transport);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vornrun/mcp",
|
|
3
|
-
"version": "0.7.0-beta.
|
|
3
|
+
"version": "0.7.0-beta.4",
|
|
4
4
|
"description": "Vorn MCP server — task management, git, and workflow tools for AI coding agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"zod": "^4.4.3"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@vornrun/server": "0.7.0-beta.
|
|
42
|
-
"@vornrun/shared": "0.7.0-beta.
|
|
41
|
+
"@vornrun/server": "0.7.0-beta.4",
|
|
42
|
+
"@vornrun/shared": "0.7.0-beta.4",
|
|
43
43
|
"tsup": "^8.5.1",
|
|
44
44
|
"tsx": "^4.23.1",
|
|
45
45
|
"typescript": "^6.0.3"
|