superclaude-kiro 1.0.6 → 1.0.7

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/installer.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "superclaude-kiro",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "SuperClaude Framework for Kiro CLI - Easy installation for teams",
5
5
  "type": "module",
6
6
  "bin": {
package/src/installer.js CHANGED
@@ -134,7 +134,8 @@ export async function updateSuperClaude() {
134
134
  process.exit(1);
135
135
  }
136
136
 
137
- spinner.text = 'Updating SuperClaude...';
137
+ // Stop this spinner before installSuperClaude starts its own
138
+ spinner.stop();
138
139
 
139
140
  // Perform fresh install with force
140
141
  await installSuperClaude({ force: true, mcp: true, default: true });