We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5046f5f commit 3fbd751Copy full SHA for 3fbd751
.changeset/shy-pillows-give.md
@@ -0,0 +1,5 @@
1
+---
2
+"create-better-t-stack": patch
3
4
+
5
+fix(post-installation): use selected package manager
apps/cli/src/helpers/project-generation/post-installation.ts
@@ -108,10 +108,10 @@ export function displayPostInstallInstructions(
108
"IMPORTANT:",
109
)} Complete D1 database setup first (see Database commands below)\n`;
110
}
111
- output += `${pc.cyan(`${stepCounter++}.`)} bun dev\n`;
+ output += `${pc.cyan(`${stepCounter++}.`)} ${runCmd} dev\n`;
112
output += `${pc.cyan(
113
`${stepCounter++}.`,
114
- )} cd apps/server && bun run cf-typegen\n\n`;
+ )} cd apps/server && ${runCmd} run cf-typegen\n\n`;
115
} else {
116
output += "\n";
117
0 commit comments