From 53b4eac9557a6fcc14ffff66cac57baf6e56586c Mon Sep 17 00:00:00 2001 From: Aaron Date: Mon, 17 Jun 2024 14:31:46 -0500 Subject: [PATCH] docs: Update wxt init command for bun --- docs/get-started/installation.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/get-started/installation.md b/docs/get-started/installation.md index d6d3d00c..725ef329 100644 --- a/docs/get-started/installation.md +++ b/docs/get-started/installation.md @@ -15,7 +15,14 @@ npx wxt@latest init ``` ```sh [bun] -bunx wxt@latest init +# The "wxt init" command currently fails when ran with bunx. +# Use NPX as a workaround, and select "bun" as your package +# manager. To stay up to date with this issue, follow +# https://github.com/wxt-dev/wxt/issues/707 +# +# bunx wxt@latest init + +npx wxt@latest init ``` ::: @@ -96,7 +103,6 @@ pnpm dev ``` :::tip 🎉 Well done! - The dev command will build the extension for development, open the browser, and reload the different parts of the extension when you save changes. :::