@jive-ai/cli 0.0.7 → 0.0.9
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.mjs +3 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -717,7 +717,8 @@ async function initCommand() {
|
|
|
717
717
|
});
|
|
718
718
|
spinner.text = "Removing uploaded MCP servers from local .mcp.json...";
|
|
719
719
|
if (mcpConfig?.mcpServers) {
|
|
720
|
-
|
|
720
|
+
const serversToRemove = [...uploadedServers.map((server) => server.name), ...skippedServers.map((server) => server.name)];
|
|
721
|
+
for (const name of Object.keys(mcpConfig.mcpServers)) if (serversToRemove.includes(name)) await removeMcpServer(name);
|
|
721
722
|
}
|
|
722
723
|
spinner.text = "Creating subagent-runner...";
|
|
723
724
|
await createSubagentRunner();
|
|
@@ -2066,7 +2067,7 @@ async function checkTeamMembership() {
|
|
|
2066
2067
|
|
|
2067
2068
|
//#endregion
|
|
2068
2069
|
//#region package.json
|
|
2069
|
-
var version = "0.0.
|
|
2070
|
+
var version = "0.0.9";
|
|
2070
2071
|
|
|
2071
2072
|
//#endregion
|
|
2072
2073
|
//#region src/index.ts
|