Skip to content

Commit

Permalink
fix(cli): fix choices issue when selecting a runtime
Browse files Browse the repository at this point in the history
Closes: #359
  • Loading branch information
Romakita committed Jan 7, 2024
1 parent 4c1fde2 commit ebeb657
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/init/InitCmd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export class InitCmd implements CommandProvider {
},
...getFeaturesPrompt(
runtimes,
packageManagers.filter((o) => o === "bun"),
packageManagers.filter((o) => o !== "bun"),
initialOptions
)
];
Expand Down

0 comments on commit ebeb657

Please sign in to comment.