From ada524a21c8ea838987ff3fb444a5d699ca131bc Mon Sep 17 00:00:00 2001 From: seb <98971553+seb-lean@users.noreply.github.com> Date: Tue, 22 Feb 2022 16:18:15 +0000 Subject: [PATCH] Update svelte.md The tip use yarn or pnpm is related to the npx command, not npm command. --- docs/tutorials/svelte.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/tutorials/svelte.md b/docs/tutorials/svelte.md index b946785ee8..769e19ffb8 100644 --- a/docs/tutorials/svelte.md +++ b/docs/tutorials/svelte.md @@ -34,6 +34,7 @@ Run the following command in your terminal to create a new directory called `sve ```bash npx create-snowpack-app svelte-snowpack --template @snowpack/app-template-minimal ``` +> 💡 Tip: add the `--use-yarn` or `--use-pnpm` flag to use something other than npm Head to the new `svelte-snowpack` directory and start Snowpack with the following two commands: @@ -52,8 +53,6 @@ Now that you have a basic project up and running! The next step is to install Sv npm install svelte --save ``` -> 💡 Tip: add the `--use-yarn` or `--use-pnpm` flag to use something other than npm - ```bash npm install @snowpack/plugin-svelte --save-dev ```