Skip to content

Commit bb64987

Browse files
authored
chore: update bun installation to pnpm (#2431)
1 parent fa49435 commit bb64987

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/CONTRIBUTING.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you are contributing to add a new chain to `viem/chains`, please read the [Ch
1919
This guide is intended to help you get started with contributing. By following these steps, you will understand the development process and workflow.
2020

2121
1. [Cloning the repository](#cloning-the-repository)
22-
2. [Installing Node.js and Bun](#installing-nodejs-and-bun)
22+
2. [Installing Node.js and pnpm](#installing-nodejs-and-pnpm)
2323
3. [Installing Foundry](#installing-foundry)
2424
4. [Installing dependencies](#installing-dependencies)
2525
5. [Running the test suite](#running-the-test-suite)
@@ -49,21 +49,21 @@ gh repo clone wevm/viem -- --recurse-submodules
4949

5050
---
5151

52-
### Installing Node.js and Bun
52+
### Installing Node.js and pnpm
5353

54-
wagmi uses [Bun workspaces](https://bun.sh/docs/install/workspaces) to manage multiple projects. You need to install **Node.js v18 or higher** and **Bun v1 or higher**.
54+
wagmi uses [pnpm workspaces](https://bun.sh/docs/install/workspaces) to manage multiple projects. You need to install **Node.js v18 or higher** and **pnpm v9.1.0 or higher**.
5555

56-
You can run the following commands in your terminal to check your local Node.js and Bun versions:
56+
You can run the following commands in your terminal to check your local Node.js and pnpm versions:
5757

5858
```bash
5959
node -v
60-
bun -v
60+
pnpm -v
6161
```
6262

63-
If the versions are not correct or you don't have Node.js or Bun installed, download and follow their setup instructions:
63+
If the versions are not correct or you don't have Node.js or pnpm installed, download and follow their setup instructions:
6464

6565
- Install Node.js using [fnm](https://github.com/Schniz/fnm) or from the [official website](https://nodejs.org)
66-
- Install [Bun](https://bun.sh/docs/installation)
66+
- Install [pnpm](https://pnpm.io/installation)
6767

6868
<div align="right">
6969
<a href="#basic-guide">&uarr; back to top</a></b>
@@ -92,10 +92,10 @@ curl -L https://foundry.paradigm.xyz | bash
9292
Once in the project's root directory, run the following command to install the project's dependencies:
9393

9494
```bash
95-
bun install
95+
pnpm install
9696
```
9797

98-
After the install completes, Bun links packages across the project for development and [git hooks](https://github.com/toplenboren/simple-git-hooks) are set up.
98+
After the install completes, pnpm links packages across the project for development and [git hooks](https://github.com/toplenboren/simple-git-hooks) are set up.
9999

100100
<div align="right">
101101
<a href="#basic-guide">&uarr; back to top</a></b>

0 commit comments

Comments
 (0)