You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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**.
55
55
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:
57
57
58
58
```bash
59
59
node -v
60
-
bun -v
60
+
pnpm -v
61
61
```
62
62
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:
64
64
65
65
- Install Node.js using [fnm](https://github.com/Schniz/fnm) or from the [official website](https://nodejs.org)
Once in the project's root directory, run the following command to install the project's dependencies:
93
93
94
94
```bash
95
-
bun install
95
+
pnpm install
96
96
```
97
97
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.
0 commit comments