From a440621796b37390d800052c823d14e502fd5ca8 Mon Sep 17 00:00:00 2001 From: Minsu Lee Date: Thu, 7 Dec 2023 11:27:39 +0900 Subject: [PATCH] docs: use pnpm instead of yarn --- docs/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/README.md b/docs/README.md index eb6129d36..62cc0c90c 100644 --- a/docs/README.md +++ b/docs/README.md @@ -6,13 +6,13 @@ static website generator. ## Installation ```console -yarn install +pnpm install ``` ## Local Development ```console -yarn start +pnpm start ``` This command starts a local development server and open up a browser window. @@ -21,7 +21,7 @@ Most changes are reflected live without having to restart the server. ## Build ```console -yarn build +pnpm build ``` This command generates static content into the `build` directory and can be @@ -30,7 +30,7 @@ served using any static contents hosting service. ## Deployment ```console -GIT_USER= USE_SSH=true yarn deploy +GIT_USER= USE_SSH=true pnpm deploy ``` If you are using GitHub pages for hosting, this command is a convenient way to