Skip to content
Open
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
4 changes: 4 additions & 0 deletions .changeset/cli-quit-command.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
'astro': patch
---
Updates the `create astro` welcome message to highlight the graceful dev/preview server quit command rather than the kill process shortcut
2 changes: 1 addition & 1 deletion packages/create-astro/src/messages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export const nextSteps = async ({ projectDir, devCmd }: { projectDir: string; de
log(enter.join(len > max ? '\n' + prefix : ' '));
}
log(
`${prefix}Run ${color.cyan(devCmd)} to start the dev server. ${color.cyan('CTRL+C')} to stop.`,
`${prefix}Run ${color.cyan(devCmd)} to start the dev server. ${color.cyan('q')} + ${color.cyan('ENTER')} to stop.`,
);
await sleep(100);
log(
Expand Down