From 99c5e571dbeea9638d65c67b8fb4dbc26fa56506 Mon Sep 17 00:00:00 2001 From: James <5511220+Zamiell@users.noreply.github.com> Date: Tue, 1 Aug 2023 11:09:54 -0400 Subject: [PATCH 1/2] Update Local_Development.mdx --- docs/contributing/Local_Development.mdx | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/contributing/Local_Development.mdx b/docs/contributing/Local_Development.mdx index c6a5d56f3757..55f8d9443c22 100644 --- a/docs/contributing/Local_Development.mdx +++ b/docs/contributing/Local_Development.mdx @@ -86,7 +86,19 @@ You can run `yarn typecheck` in any package or in the root to run `tsc`. ## Website Development Our interactive documentation website is built with [Docusaurus](https://docusaurus.io). -Running `yarn start` from either the root or `packages/website` will start a local dev server on `localhost:3000`. +After cloning the repository, run the following steps to install and build the website: + +```sh +yarn install # To ensure that the dependencies are installed. +yarn build # This builds all the packages except for `website-eslint` and `website`. +cd packages/website-eslint +yarn build +cd ../.. +cd packages/website +yarn build +cd ../.. +``` +Next, running `yarn start` from either the root or `packages/website` will start a local dev server on `localhost:3000`. > The `website` package relies on other packages being built. > We recommend running `yarn build` from the root before `yarn start`. From a27b5ae35f744269124a4564a8b03ae5acc88ccf Mon Sep 17 00:00:00 2001 From: James <5511220+Zamiell@users.noreply.github.com> Date: Tue, 1 Aug 2023 11:29:40 -0400 Subject: [PATCH 2/2] Update Local_Development.mdx --- docs/contributing/Local_Development.mdx | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/contributing/Local_Development.mdx b/docs/contributing/Local_Development.mdx index 55f8d9443c22..8497b58cff55 100644 --- a/docs/contributing/Local_Development.mdx +++ b/docs/contributing/Local_Development.mdx @@ -99,6 +99,3 @@ yarn build cd ../.. ``` Next, running `yarn start` from either the root or `packages/website` will start a local dev server on `localhost:3000`. - -> The `website` package relies on other packages being built. -> We recommend running `yarn build` from the root before `yarn start`.