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.
- package/index.js +1 -1
- 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(
|
|
470
|
+
return text.replace(/[{}]/g, m => m === '{' ? '{open}' : '{close}');
|
|
471
471
|
}
|
|
472
472
|
|
|
473
473
|
// ─── CLI Mode (--list) ───────────────────────────────────────────────────────
|