diff --git a/docs/site/content/blog/turbo-1-6-0.mdx b/docs/site/content/blog/turbo-1-6-0.mdx index 96e68c722f23d..93440c731ce85 100644 --- a/docs/site/content/blog/turbo-1-6-0.mdx +++ b/docs/site/content/blog/turbo-1-6-0.mdx @@ -68,7 +68,7 @@ Try it out now by [starting from the example](https://github.com/vercel/turbo/tr ```bash title="Terminal" - pnpm install turbo --save-dev + pnpm add turbo --save-dev ``` diff --git a/docs/site/content/blog/turbo-1-7-0.mdx b/docs/site/content/blog/turbo-1-7-0.mdx index 9a69f88736b93..ee1e5ae4ee6d3 100644 --- a/docs/site/content/blog/turbo-1-7-0.mdx +++ b/docs/site/content/blog/turbo-1-7-0.mdx @@ -79,7 +79,7 @@ yarn global add turbo ```bash title="Terminal" -pnpm install turbo --global +pnpm add turbo --global ``` diff --git a/docs/site/content/docs/crafting-your-repository/managing-dependencies.mdx b/docs/site/content/docs/crafting-your-repository/managing-dependencies.mdx index 68ac8b1c172ac..e49fbf406b332 100644 --- a/docs/site/content/docs/crafting-your-repository/managing-dependencies.mdx +++ b/docs/site/content/docs/crafting-your-repository/managing-dependencies.mdx @@ -75,7 +75,7 @@ To quickly install dependencies in multiple packages, you can use your package m ```bash title="Terminal" -pnpm install jest --save-dev --recursive --filter=web --filter=@repo/ui --filter=docs +pnpm add jest --save-dev --recursive --filter=web --filter=@repo/ui --filter=docs ``` pnpm documentation diff --git a/docs/site/content/docs/getting-started/index.mdx b/docs/site/content/docs/getting-started/index.mdx index c357f3cf0942b..87b537e2b60e0 100644 --- a/docs/site/content/docs/getting-started/index.mdx +++ b/docs/site/content/docs/getting-started/index.mdx @@ -30,7 +30,7 @@ Install `turbo` globally so you can conveniently run `turbo` commands in your te ```bash title="Terminal" - pnpm install turbo --global + pnpm add turbo --global ``` diff --git a/docs/site/content/docs/getting-started/installation.mdx b/docs/site/content/docs/getting-started/installation.mdx index 1b9b85f9d1551..328d0a9d9d275 100644 --- a/docs/site/content/docs/getting-started/installation.mdx +++ b/docs/site/content/docs/getting-started/installation.mdx @@ -59,7 +59,7 @@ A global install of `turbo` brings flexibility and speed to your local workflows ```bash title="Terminal" - pnpm install turbo --global + pnpm add turbo --global ``` diff --git a/docs/site/content/docs/guides/migrating-from-nx.mdx b/docs/site/content/docs/guides/migrating-from-nx.mdx index d4b9df18dd637..cb387254c79b7 100644 --- a/docs/site/content/docs/guides/migrating-from-nx.mdx +++ b/docs/site/content/docs/guides/migrating-from-nx.mdx @@ -330,7 +330,7 @@ Add Turborepo to the root `package.json` of the workspace. ```bash title="Terminal" -pnpm install turbo --save-dev --workspace-root +pnpm add turbo --save-dev --workspace-root ``` @@ -368,7 +368,7 @@ You can also optionally install `turbo` globally for added convenience when work ```bash title="Terminal" -pnpm install turbo --global +pnpm add turbo --global ``` diff --git a/docs/site/content/docs/guides/single-package-workspaces.mdx b/docs/site/content/docs/guides/single-package-workspaces.mdx index 94aee8fee6ef7..43b4b6646695b 100644 --- a/docs/site/content/docs/guides/single-package-workspaces.mdx +++ b/docs/site/content/docs/guides/single-package-workspaces.mdx @@ -23,7 +23,7 @@ Install `turbo` into your application: ```bash title="Terminal" - pnpm install turbo --save-dev + pnpm add turbo --save-dev ``` diff --git a/docs/site/content/docs/guides/tools/jest.mdx b/docs/site/content/docs/guides/tools/jest.mdx index 2ab51b021666d..5ad6be7c820c2 100644 --- a/docs/site/content/docs/guides/tools/jest.mdx +++ b/docs/site/content/docs/guides/tools/jest.mdx @@ -36,7 +36,7 @@ Install `jest` into the packages where you plan on having test suites. For this ```bash title="Terminal" -pnpm install jest --save-dev --filter=@repo/ui --filter=web +pnpm add jest --save-dev --filter=@repo/ui --filter=web ``` diff --git a/docs/site/content/docs/guides/tools/storybook.mdx b/docs/site/content/docs/guides/tools/storybook.mdx index 2441bc752c5d0..a2243edd8c30b 100644 --- a/docs/site/content/docs/guides/tools/storybook.mdx +++ b/docs/site/content/docs/guides/tools/storybook.mdx @@ -164,7 +164,7 @@ Now, install your UI package into Storybook. ```bash title="Terminal" -pnpm install @repo/ui --filter=storybook +pnpm add @repo/ui --filter=storybook ``` @@ -330,7 +330,7 @@ You'll also need to install any Storybook packages required for writing stories. ```bash title="Terminal" -pnpm install @storybook/react --filter=@repo/ui --save-dev +pnpm add @storybook/react --filter=@repo/ui --save-dev ``` diff --git a/docs/site/content/docs/guides/tools/tailwind.mdx b/docs/site/content/docs/guides/tools/tailwind.mdx index 057a6934edc8c..dc489d27c3193 100644 --- a/docs/site/content/docs/guides/tools/tailwind.mdx +++ b/docs/site/content/docs/guides/tools/tailwind.mdx @@ -272,7 +272,7 @@ Install the packages you've created into your application. ```bash title="Terminal" -pnpm install @repo/ui @repo/tailwind-config --save-dev --filter=@repo/ui --filter=web +pnpm add @repo/ui @repo/tailwind-config --save-dev --filter=@repo/ui --filter=web ```