mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-11-09 23:24:10 -08:00
Merge pull request #1296 from geeksville/pr-fixinstructs
Update build instructions - pnpm is apparently now the tool used
This commit is contained in:
commit
70638582bf
|
@ -48,21 +48,21 @@ Assuming you have the [prerequisites installed](/docs/development/documentation/
|
||||||
|
|
||||||
2. Install Dependencies
|
2. Install Dependencies
|
||||||
|
|
||||||
```shell title="Install dependencies using Yarn"
|
```shell title="Install dependencies using pnpm"
|
||||||
yarn install
|
pnpm i
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Run Docusaurus
|
3. Run Docusaurus
|
||||||
|
|
||||||
```shell title="Run node.js server"
|
```shell title="Run a local documentation server and open it in your broswer"
|
||||||
yarn start
|
pnpm run start
|
||||||
```
|
```
|
||||||
|
|
||||||
:::tip
|
:::tip
|
||||||
Before submitting a pull request, it's helpful to run the following command to ensure there are no broken links or errors:
|
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"
|
```shell title="Build Project"
|
||||||
yarn build
|
pnpm run build
|
||||||
```
|
```
|
||||||
|
|
||||||
:::
|
:::
|
||||||
|
|
Loading…
Reference in a new issue