Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions docs/guide/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down Expand Up @@ -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]
Expand All @@ -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
```
Expand Down Expand Up @@ -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
```
Expand Down
Loading