diff --git a/docs/guide/installation.md b/docs/guide/installation.md index 5cce54022..f86d4c728 100644 --- a/docs/guide/installation.md +++ b/docs/guide/installation.md @@ -10,14 +10,14 @@ Run the [`init` command](/api/cli/wxt-init), and follow the instructions. :::code-group -```sh [PNPM] -pnpm dlx wxt@latest init -``` - ```sh [Bun] bunx wxt@latest init ``` +```sh [PNPM] +pnpm dlx wxt@latest init +``` + ```sh [NPM] npx wxt@latest init ``` @@ -46,14 +46,14 @@ Once you've run the `dev` command, continue to [Next Steps](#next-steps)! 1. Create a new project :::code-group - ```sh [PNPM] + ```sh [Bun] cd my-project - pnpm init + bun init ``` - ```sh [Bun] + ```sh [PNPM] cd my-project - bun init + pnpm init ``` ```sh [NPM] @@ -71,14 +71,14 @@ Once you've run the `dev` command, continue to [Next Steps](#next-steps)! 2. Install WXT: :::code-group - ```sh [PNPM] - pnpm i -D wxt - ``` - ```sh [Bun] bun add -D wxt ``` + ```sh [PNPM] + pnpm i -D wxt + ``` + ```sh [NPM] npm i -D wxt ``` @@ -119,14 +119,14 @@ Once you've run the `dev` command, continue to [Next Steps](#next-steps)! 5. Run your extension in dev mode :::code-group - ```sh [PNPM] - pnpm dev - ``` - ```sh [Bun] bun run dev ``` + ```sh [PNPM] + pnpm dev + ``` + ```sh [NPM] npm run dev ```