Skip to content

Commit

Permalink
docs: tweak install command for pnpm
Browse files Browse the repository at this point in the history
Using `--save-dev` keeps it closer to the other install commands.
  • Loading branch information
kanej committed Nov 22, 2024
1 parent 711789c commit cce887a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ yarn add --dev @nomicfoundation/hardhat-foundry
:::tab{value=pnpm}

```
pnpm add -D @nomicfoundation/hardhat-foundry
pnpm add --save-dev @nomicfoundation/hardhat-foundry
```

::::
Expand Down Expand Up @@ -91,15 +91,15 @@ Then install Hardhat, the [Hardhat Toolbox](/hardhat-runner/plugins/nomicfoundat
:::tab{value="npm 7+"}

```
npm install --save-dev @nomicfoundation/hardhat-toolbox @nomicfoundation/hardhat-foundry
npm install --save-dev hardhat @nomicfoundation/hardhat-toolbox @nomicfoundation/hardhat-foundry
```

:::

:::tab{value="npm 6"}

```
npm install --save-dev @nomicfoundation/hardhat-toolbox @nomicfoundation/hardhat-foundry
npm install --save-dev hardhat @nomicfoundation/hardhat-toolbox @nomicfoundation/hardhat-foundry
```

:::
Expand All @@ -115,7 +115,7 @@ yarn add --dev hardhat @nomicfoundation/hardhat-toolbox @nomicfoundation/hardhat
:::tab{value=pnpm}

```
pnpm add -D hardhat @nomicfoundation/hardhat-toolbox @nomicfoundation/hardhat-foundry
pnpm add --save-dev hardhat @nomicfoundation/hardhat-toolbox @nomicfoundation/hardhat-foundry
```

:::
Expand Down

0 comments on commit cce887a

Please sign in to comment.