From 81b9ae8a98b024ffb4875be5416df3024860dd8e Mon Sep 17 00:00:00 2001 From: Alexander Daichendt Date: Tue, 11 Jun 2024 20:32:43 +0200 Subject: [PATCH] docs: update readme for pnpm --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 368e036..c5ada65 100644 --- a/README.md +++ b/README.md @@ -6,13 +6,13 @@ Powered by Svelte & SvelteKit ## Developing -Once you've created a project and installed dependencies with `yarn install`, start a development server: +Once you've created a project and installed dependencies with `pnpm install`, start a development server: ```bash -yarn dev +pnpm dev # or start the server and open the app in a new browser tab -yarn dev -- --open +pnpm dev -- --open ``` ## Building @@ -20,7 +20,7 @@ yarn dev -- --open To create a production version of your app: ```bash -yarn build +pnpm build ``` -You can preview the production build with `npm run preview`. +You can preview the production build with `pnpm run preview`.