grepmax 0.6.4 → 0.6.5
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/commands/droid.js
CHANGED
|
@@ -136,7 +136,7 @@ child.unref();
|
|
|
136
136
|
`;
|
|
137
137
|
const stopScript = `
|
|
138
138
|
const { spawnSync, execSync } = require("child_process");
|
|
139
|
-
try { execSync("
|
|
139
|
+
try { execSync("gmax serve stop", { stdio: "ignore" }); } catch {}
|
|
140
140
|
`;
|
|
141
141
|
writeFileIfChanged(startJsPath, startScript.trim());
|
|
142
142
|
writeFileIfChanged(stopJsPath, stopScript.trim());
|
package/dist/commands/mcp.js
CHANGED
|
@@ -705,6 +705,6 @@ exports.mcp = new commander_1.Command("mcp")
|
|
|
705
705
|
}));
|
|
706
706
|
yield server.connect(transport);
|
|
707
707
|
// Kick off index readiness check and watcher in background
|
|
708
|
-
ensureIndexReady();
|
|
708
|
+
ensureIndexReady().catch((e) => console.error("[MCP] Index readiness check failed:", e));
|
|
709
709
|
ensureWatcher();
|
|
710
710
|
}));
|
package/dist/commands/setup.js
CHANGED
package/package.json
CHANGED