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 cc65b33 commit 92d2443Copy full SHA for 92d2443
.changeset/afraid-kids-occur.md
@@ -0,0 +1,5 @@
1
+---
2
+"create-better-t-stack": patch
3
4
+
5
+clear console on start
apps/cli/src/index.ts
@@ -54,7 +54,7 @@ async function gatherConfig(
54
const response = await text({
55
message: "📝 Project name",
56
placeholder: defaultName,
57
- initialValue: flags.projectName || defaultName,
+ initialValue: flags.projectName,
58
defaultValue: defaultName,
59
validate: (value) => {
60
const nameToUse = value.trim() || defaultName;
@@ -189,6 +189,7 @@ async function gatherConfig(
189
async function main() {
190
const s = spinner();
191
try {
192
+ console.clear();
193
renderTitle();
194
intro(chalk.bold("Creating a new Better-T Stack project"));
195
program
0 commit comments