forgehive 1.0.9 → 1.0.10
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/cli.js +3 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -9813,8 +9813,10 @@ if (command === "init") {
|
|
|
9813
9813
|
const ok = await promptConfirm(` Best\xE4tigen und loslegen? ${ANSI.dim}[Y/n]${ANSI.reset} `);
|
|
9814
9814
|
if (ok) {
|
|
9815
9815
|
confirm(projectRoot);
|
|
9816
|
+
const cols = process.stdout.columns ?? 60;
|
|
9816
9817
|
console.log(`
|
|
9817
|
-
${ANSI.
|
|
9818
|
+
${ANSI.dim}${"\u2500".repeat(cols)}${ANSI.reset}`);
|
|
9819
|
+
console.log(`${ANSI.green}\u2713${ANSI.reset} ${brand} bereit \u2014 \xF6ffne Claude Code in diesem Projekt.
|
|
9818
9820
|
`);
|
|
9819
9821
|
} else {
|
|
9820
9822
|
console.log(`
|