@qazuor/claude-code-config 0.6.0 → 0.6.1
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/bin.cjs +5 -0
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +5 -0
- package/dist/bin.js.map +1 -1
- package/package.json +1 -1
package/dist/bin.cjs
CHANGED
|
@@ -10722,7 +10722,12 @@ async function promptMcpConfig(options) {
|
|
|
10722
10722
|
checked: options?.defaults?.servers?.some((i) => i.serverId === s.id) ?? false
|
|
10723
10723
|
};
|
|
10724
10724
|
});
|
|
10725
|
+
const hasEnabledChoices = choices.some((choice) => !choice.disabled);
|
|
10725
10726
|
const categoryLabel = formatCategory(category);
|
|
10727
|
+
if (!hasEnabledChoices) {
|
|
10728
|
+
logger.info(colors.muted(`${categoryLabel}: All servers already installed`));
|
|
10729
|
+
continue;
|
|
10730
|
+
}
|
|
10726
10731
|
const selected = await checkbox({
|
|
10727
10732
|
message: `${categoryLabel}:`,
|
|
10728
10733
|
choices
|