From 355faef9be7b18b99d7ec772453263bf1b917973 Mon Sep 17 00:00:00 2001 From: Heechul Ryu Date: Wed, 29 Jun 2022 11:11:14 -0700 Subject: [PATCH] Update text.md to have a consistency with what's shown at https://kit.svelte.dev/ like below ``` npm create svelte my-app cd my-app npm install npm run dev -- --open ``` also it feels more natural with `create` than `init` --- site/content/tutorial/01-introduction/07-making-an-app/text.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/tutorial/01-introduction/07-making-an-app/text.md b/site/content/tutorial/01-introduction/07-making-an-app/text.md index b65d084f139..68b54e33f58 100644 --- a/site/content/tutorial/01-introduction/07-making-an-app/text.md +++ b/site/content/tutorial/01-introduction/07-making-an-app/text.md @@ -7,7 +7,7 @@ This tutorial is designed to get you familiar with the process of writing compon First, you'll need to integrate Svelte with a build tool. We recommend using [Vite](https://vitejs.dev/) with [vite-plugin-svelte](https://github.com/sveltejs/vite-plugin-svelte/)... ```bash -npm init vite my-app -- --template svelte +npm create vite my-app -- --template svelte ``` ...or one of the [community-maintained integrations](https://sveltesociety.dev/tools).