Skip to content

Commit e96f78d

Browse files
committed
Fix bun template generation command
1 parent 12d760a commit e96f78d

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

apps/templates/src/components/templates/templates-ui-generate-command.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ function getCommand(pm: string, template: string) {
1515
case "yarn":
1616
// Yarn only supports the `latest` tag
1717
return `yarn create solana-dapp -t ${template}`;
18+
case "bun":
19+
return `bunx create-solana-dapp@latest -t ${template}`;
1820
default:
1921
// All other package managers support the `@latest` tag and best practice is to always use it explicitly
2022
return `${pm} create solana-dapp@latest -t ${template}`;

0 commit comments

Comments
 (0)