claude-starter 1.4.1 → 1.4.2

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/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -467,7 +467,7 @@ function getProjectColor(projectName, colorMap) {
467
467
  }
468
468
 
469
469
  function esc(text) {
470
- return text.replace(/\{/g, '\\{');
470
+ return text.replace(/[{}]/g, m => m === '{' ? '{open}' : '{close}');
471
471
  }
472
472
 
473
473
  // ─── CLI Mode (--list) ───────────────────────────────────────────────────────
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-starter",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "A beautiful terminal UI for managing Claude Code sessions — start new or resume past conversations",
5
5
  "main": "index.js",
6
6
  "bin": {