zuppaclaude 1.3.7 → 1.3.8

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/lib/installer.js CHANGED
@@ -204,6 +204,9 @@ class Installer {
204
204
  commands: cmdsInstalled
205
205
  });
206
206
 
207
+ // Close readline interface
208
+ this.prompts.close();
209
+
207
210
  return true;
208
211
  }
209
212
 
@@ -43,6 +43,7 @@ class Uninstaller {
43
43
  const confirm = await this.prompts.confirm('Are you sure you want to uninstall ZuppaClaude?', false);
44
44
  if (!confirm) {
45
45
  this.logger.info('Uninstallation cancelled');
46
+ this.prompts.close();
46
47
  return false;
47
48
  }
48
49
 
@@ -74,6 +75,9 @@ class Uninstaller {
74
75
  // Print summary
75
76
  this.printSummary(results, preserveSettings);
76
77
 
78
+ // Close readline interface
79
+ this.prompts.close();
80
+
77
81
  return true;
78
82
  }
79
83
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zuppaclaude",
3
- "version": "1.3.7",
3
+ "version": "1.3.8",
4
4
  "description": "Claude Code power-up installer - SuperClaude + Spec Kit + Claude-Z + Claude HUD",
5
5
  "main": "lib/index.js",
6
6
  "bin": {