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
Finally, we use `pnpm` as our javascript package manager. You can leverage `corepack`, which comes shipped with `node`, to install and use the `pnpm` version we defined in our `package.json`.
105
105
106
106
```bash
107
-
cd gitbutler-repo
108
-
corepack enable
109
-
pnpm install # This should now ask you to confirm download, install, and use of pnpm
107
+
$ cd gitbutler-repo
108
+
$ corepack enable
110
109
```
111
110
112
111
### Install dependencies
@@ -117,7 +116,7 @@ I hope you have some disk space for 300M of `node_modules`, because this bad
117
116
boy will fill er up:
118
117
119
118
```bash
120
-
$ pnpm install
119
+
$ pnpm install# This should now ask you to confirm download, install, and use of pnpm
121
120
```
122
121
123
122
You'll have to re-run this occasionally when our deps change.
0 commit comments