create-claude-code-visualizer 0.1.4 → 0.1.5

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 -3
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -151,9 +151,7 @@ async function main() {
151
151
 
152
152
  // Copy personal-assistant-app (the Next.js UI)
153
153
  const appTemplate = path.join(TEMPLATES_DIR, "app");
154
- if (fs.existsSync(appDir)) {
155
- warn("personal-assistant-app/ already exists — updating...");
156
- }
154
+ fs.mkdirSync(appDir, { recursive: true });
157
155
  copyDir(appTemplate, appDir);
158
156
  log("personal-assistant-app/ installed");
159
157
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-claude-code-visualizer",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Run and manage Claude Code agents through a web UI",
5
5
  "license": "MIT",
6
6
  "bin": {