create-claude-workspace 2.1.9 → 2.1.10

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.
@@ -423,7 +423,11 @@ export class TUI {
423
423
  this.log(` ${pre} ${ANSI_COLORS.red}✗ ${output}${RESET}`, `ERROR: ${output}`);
424
424
  }
425
425
  else {
426
- this.log(` ${pre} ${ANSI_COLORS.green}✓${RESET} ${DIM}${output}${RESET}`, `OK: ${output}`);
426
+ const lines = output.split('\n');
427
+ const summary = lines.length > 3
428
+ ? `${lines.length} lines`
429
+ : output.replace(/\n/g, ' ').trim();
430
+ this.log(` ${pre} ${ANSI_COLORS.green}✓${RESET} ${DIM}${summary}${RESET}`, `OK: ${summary}`);
427
431
  }
428
432
  }
429
433
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-claude-workspace",
3
- "version": "2.1.9",
3
+ "version": "2.1.10",
4
4
  "author": "",
5
5
  "repository": {
6
6
  "type": "git",