From 523da6cc82f9deda3b39cdb80b9a6f0e82ac2784 Mon Sep 17 00:00:00 2001 From: ZuperZee Date: Thu, 9 Jan 2025 11:39:45 +0100 Subject: [PATCH] chore(website): switch yarn to pnpm commands --- website/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/website/README.md b/website/README.md index 55d0c3e..66f53ad 100644 --- a/website/README.md +++ b/website/README.md @@ -4,30 +4,30 @@ This website is built using [Docusaurus 2](https://docusaurus.io/), a modern sta ### Installation -``` -$ yarn +```sh +pnpm install ``` ### Local Development -``` -$ yarn start +```sh +pnpm run start ``` This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server. ### Build -``` -$ yarn build +```sh +pnpm run build ``` This command generates static content into the `build` directory and can be served using any static contents hosting service. ### Deployment -``` -$ GIT_USER= USE_SSH=true yarn deploy +```sh +GIT_USER= USE_SSH=true pnpm run deploy ``` If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.