Skip to content

Commit 6102ca2

Browse files
authored
Update stop command message in messages.ts (#15770)
1 parent b5f55ea commit 6102ca2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.changeset/cli-quit-command.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
'astro': patch
3+
---
4+
Updates the `create astro` welcome message to highlight the graceful dev/preview server quit command rather than the kill process shortcut

packages/create-astro/src/messages.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export const nextSteps = async ({ projectDir, devCmd }: { projectDir: string; de
123123
log(enter.join(len > max ? '\n' + prefix : ' '));
124124
}
125125
log(
126-
`${prefix}Run ${color.cyan(devCmd)} to start the dev server. ${color.cyan('CTRL+C')} to stop.`,
126+
`${prefix}Run ${color.cyan(devCmd)} to start the dev server. ${color.cyan('q')} + ${color.cyan('ENTER')} to stop.`,
127127
);
128128
await sleep(100);
129129
log(

0 commit comments

Comments
 (0)