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
Roo Code has transitioned to a monorepo powered by PNPM workspaces and TurboRepo.
4
+
5
+
When you first pull down the monorepo changes from git you'll need to re-install all packages using pnpm. You can install pnpm using [these](https://pnpm.io/installation) instructions. If you're on MacOS the easiest option is to use Homebrew:
6
+
7
+
```sh
8
+
brew install pnpm
9
+
```
10
+
11
+
Once pnpm is installed you should wipe out your existing node_modules directories for a fresh start:
12
+
13
+
```sh
14
+
# This is optional, but recommended.
15
+
find . -name node_modules | xargs rm -rvf
16
+
```
17
+
18
+
And then install your packages:
19
+
20
+
```sh
21
+
pnpm install
22
+
```
23
+
24
+
If things are in good working order then you should be able to build a vsix and install it in VSCode:
0 commit comments