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.
- package/index.js +1 -3
- 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
|
-
|
|
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
|
|