From 19f94e1e6a7080d7d820b5836b75e01a66f5cc43 Mon Sep 17 00:00:00 2001 From: ded-furby <190979964+ded-furby@users.noreply.github.com> Date: Tue, 30 Jun 2026 01:31:47 +1000 Subject: [PATCH] docs: prioritize Bun in package manager options (#2425) Co-authored-by: Patryk Kuniczak --- packages/wxt/src/core/initialize.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/wxt/src/core/initialize.ts b/packages/wxt/src/core/initialize.ts index 7a26b8aa..7f53c706 100644 --- a/packages/wxt/src/core/initialize.ts +++ b/packages/wxt/src/core/initialize.ts @@ -43,10 +43,10 @@ export async function initialize(options: { type: () => (options.packageManager == null ? 'select' : undefined), message: 'Package Manager', choices: [ + { title: styleText('magenta', 'bun'), value: 'bun' }, { title: styleText('red', 'npm'), value: 'npm' }, { title: styleText('yellow', 'pnpm'), value: 'pnpm' }, { title: styleText('cyan', 'yarn'), value: 'yarn' }, - { title: styleText('magenta', 'bun'), value: 'bun' }, ], }, ],