From fe2d86c402b1affcc2b590c715f86920603be6ac Mon Sep 17 00:00:00 2001 From: Daniel Lo Nigro Date: Fri, 5 Jul 2024 10:03:30 -0700 Subject: [PATCH] Change npm commands to yarn commands in website README --- website/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/website/README.md b/website/README.md index c6295d28..eabba6ca 100644 --- a/website/README.md +++ b/website/README.md @@ -29,14 +29,14 @@ Static assets, like favicons, can be placed in the `public/` directory. All commands are run from the root of the project, from a terminal: -| Command | Action | -|:--------------------------|:-------------------------------------------------| -| `npm install` | Installs dependencies | -| `npm run dev` | Starts local dev server at `localhost:4321` | -| `npm run build` | Build your production site to `./dist/` | -| `npm run preview` | Preview your build locally, before deploying | -| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` | -| `npm run astro -- --help` | Get help using the Astro CLI | +| Command | Action | +|:-----------------------|:-------------------------------------------------| +| `yarn install` | Installs dependencies | +| `yarn dev` | Starts local dev server at `localhost:4321` | +| `yarn build` | Build your production site to `./dist/` | +| `yarn preview` | Preview your build locally, before deploying | +| `yarn astro ...` | Run CLI commands like `astro add`, `astro check` | +| `yarn astro -- --help` | Get help using the Astro CLI | ## 👀 Want to learn more?