Skip to content

Commit

Permalink
Merge pull request #2911 from DukeFerdinand/fix/bun-install-command
Browse files Browse the repository at this point in the history
Fix bun install command for install docs
  • Loading branch information
zbeyens authored Feb 1, 2024
2 parents c54d080 + 1328882 commit fa32192
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/www/src/app/_components/installation-code.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function InstallationCode({
__npmCommand__: code,
__pnpmCommand__: code.replaceAll('npm install', 'pnpm add'),
__yarnCommand__: code.replaceAll('npm install', 'yarn add'),
__bunCommand__: code.replaceAll('npm install', 'yarn add'),
__bunCommand__: code.replaceAll('npm install', 'bun add'),
}}
className={cn('absolute right-4 top-4')}
/>
Expand Down

0 comments on commit fa32192

Please sign in to comment.