From b647a203bc1fd69f3aca0a7032cecb99d7a2706c Mon Sep 17 00:00:00 2001 From: Theo Ratkin Date: Wed, 30 Oct 2024 22:01:18 -0400 Subject: [PATCH] docs(tutorial): update app creation command to Svelte CLI Replace deprecated `create-svelte` package with new `sv` command in the tutorial conclusion --- .../07-conclusion/01-next-steps/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/svelte.dev/content/tutorial/04-advanced-sveltekit/07-conclusion/01-next-steps/index.md b/apps/svelte.dev/content/tutorial/04-advanced-sveltekit/07-conclusion/01-next-steps/index.md index 19a69fc1c0..20ce08f918 100644 --- a/apps/svelte.dev/content/tutorial/04-advanced-sveltekit/07-conclusion/01-next-steps/index.md +++ b/apps/svelte.dev/content/tutorial/04-advanced-sveltekit/07-conclusion/01-next-steps/index.md @@ -4,10 +4,10 @@ title: Next steps Congratulations! If you've made it the entire way through this tutorial, you can now consider yourself a Svelte and SvelteKit expert. -You can start building apps on your own machine with the [`create-svelte`](https://www.npmjs.com/package/create-svelte) package: +You can start building apps on your own machine with [Svelte CLI](https://www.npmjs.com/package/sv): ```bash -npm create svelte@latest +npx sv create ``` Svelte and SvelteKit will continue to evolve, and so will this tutorial. Check back periodically for updates.