fix(post-installation): use selected package manager (#342)

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: Aman Varshney <amanvarshney.work@gmail.com>
This commit is contained in:
Louis Genestier
2025-06-22 18:33:39 +03:00
committed by GitHub
parent 5046f5f396
commit 3fbd751ceb
2 changed files with 7 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
---
"create-better-t-stack": patch
---
fix(post-installation): use selected package manager

View File

@@ -108,10 +108,10 @@ export function displayPostInstallInstructions(
"IMPORTANT:",
)} Complete D1 database setup first (see Database commands below)\n`;
}
output += `${pc.cyan(`${stepCounter++}.`)} bun dev\n`;
output += `${pc.cyan(`${stepCounter++}.`)} ${runCmd} dev\n`;
output += `${pc.cyan(
`${stepCounter++}.`,
)} cd apps/server && bun run cf-typegen\n\n`;
)} cd apps/server && ${runCmd} run cf-typegen\n\n`;
} else {
output += "\n";
}