wormclaude 1.0.234 → 1.0.235
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/dist/theme.js +1 -1
- package/dist/tools.js +2 -1
- package/package.json +1 -1
package/dist/theme.js
CHANGED
package/dist/tools.js
CHANGED
|
@@ -2062,7 +2062,8 @@ export async function executeTool(name, args) {
|
|
|
2062
2062
|
const fmt = (r, mode) => {
|
|
2063
2063
|
const lines = [
|
|
2064
2064
|
`✓ Klon tamam (${mode}): ${r.pages} sayfa + ${r.assets} asset → ${r.outDir}`,
|
|
2065
|
-
|
|
2065
|
+
`Çalıştır (önerilen, SPA/Next.js için güvenilir): cd "${r.outDir}" && python -m http.server 8000 → tarayıcıda http://localhost:8000`,
|
|
2066
|
+
`(Basit statik sitede index.html'i çift-tıklamak da yeterli; ama SPA/Next.js klonunda file:// altında alt-sayfa/asset yolları kırılabilir, o yüzden statik sunucu daha sağlam.)`,
|
|
2066
2067
|
];
|
|
2067
2068
|
if (r.pageFiles.length)
|
|
2068
2069
|
lines.push('Sayfalar: ' + r.pageFiles.slice(0, 12).map((f) => path.relative(r.outDir, f)).join(', ') + (r.pageFiles.length > 12 ? ` (+${r.pageFiles.length - 12})` : ''));
|