Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion apps/docs/content/docs/cli/troubleshooting.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ sim --version
Then upgrade with the package manager you installed it with — using a different
one installs a second copy instead of replacing the executable on your `PATH`:

<Tabs items={['npm', 'pnpm', 'bun']}>
<Tabs items={['npm', 'pnpm', 'bun', 'Yarn Classic']}>
<Tab value="npm">
```bash
npm install -g sim@latest
Expand All @@ -116,6 +116,11 @@ one installs a second copy instead of replacing the executable on your `PATH`:
bun add -g sim@latest
```
</Tab>
<Tab value="Yarn Classic">
```bash
yarn global add sim@latest
```
</Tab>
</Tabs>

The CLI can also tell you this through a cached daily check on eligible
Expand Down
Loading