diff --git a/docs/get-started/installation.md b/docs/get-started/installation.md index 5dfc5da4..f9a36a1c 100644 --- a/docs/get-started/installation.md +++ b/docs/get-started/installation.md @@ -13,11 +13,11 @@ See [From Scratch](#from-scratch) or reference one of the templates below. :::code-group ```sh [pnpm] -pnpx wxt@latest init +pnpx wxt@latest init ``` ```sh [npm] -npx wxt@latest init +npx wxt@latest init ``` ::: @@ -40,19 +40,22 @@ Create a new NPM project: :::code-group ```sh [pnpm] -pnpm init -cd +mkdir project-name +cd project-name +pnpm init echo 'shamefully-hoist=true' >> .npmrc ``` ```sh [npm] -npm init -cd +mkdir project-name +cd project-name +npm init ``` ```sh [yarn] -yarn init -cd +mkdir project-name +cd project-name +yarn init ``` :::