From 050e57ec1856c57f17e1bce7990f3c6a608d64e7 Mon Sep 17 00:00:00 2001 From: geeksville Date: Sun, 16 Jun 2024 15:34:22 -0700 Subject: [PATCH] Update build instructions - pnpm is apparently now the tool used per @chrichton - woot! --- docs/development/documentation/index.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/development/documentation/index.mdx b/docs/development/documentation/index.mdx index 75146c7d..11934558 100644 --- a/docs/development/documentation/index.mdx +++ b/docs/development/documentation/index.mdx @@ -48,21 +48,21 @@ Assuming you have the [prerequisites installed](/docs/development/documentation/ 2. Install Dependencies - ```shell title="Install dependencies using Yarn" - yarn install + ```shell title="Install dependencies using pnpm" + pnpm i ``` 3. Run Docusaurus - ```shell title="Run node.js server" - yarn start + ```shell title="Run a local documentation server and open it in your broswer" + pnpm run start ``` :::tip Before submitting a pull request, it's helpful to run the following command to ensure there are no broken links or errors: ```shell title="Build Project" -yarn build +pnpm run build ``` :::