Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/dedupe-created-message.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@marko/create": patch
"create-marko": patch
---

Remove the duplicated "Project created" line at the end of the scaffold — the spinner's final message and the closing message both said it. The spinner now ends with "Project created" and the closing line starts the "Next steps".
4 changes: 1 addition & 3 deletions packages/create/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,7 @@ export async function run(options: CliOptions): Promise<void> {
];

p.outro(
`Project created! Next steps:\n${steps
.map((step) => color.cyan(` ${step}`))
.join("\n")}`,
`Next steps:\n${steps.map((step) => color.cyan(` ${step}`)).join("\n")}`,
);
} catch (err) {
spin.stop("Failed to create project", 1);
Expand Down