Skip to content

Commit

Permalink
Merge pull request #26998 from scottdotjs/next
Browse files Browse the repository at this point in the history
Docs: Correct command in examples of adding packages with pnpm
(cherry picked from commit 56a9f7b)
  • Loading branch information
jonniebigodes authored and storybook-bot committed May 4, 2024
1 parent dcd788d commit 88dd6e8
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion docs/snippets/angular/angular-install.pnpm.js.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
pnpm install --save-dev @storybook/angular
pnpm add --save-dev @storybook/angular
```
2 changes: 1 addition & 1 deletion docs/snippets/react/nextjs-install.pnpm.js.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
pnpm install --save-dev @storybook/nextjs
pnpm add --save-dev @storybook/nextjs
```
2 changes: 1 addition & 1 deletion docs/snippets/react/react-vite-install.pnpm.js.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
pnpm install --save-dev @storybook/react-vite
pnpm add --save-dev @storybook/react-vite
```
2 changes: 1 addition & 1 deletion docs/snippets/react/react-webpack5-install.pnpm.js.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
pnpm install --save-dev @storybook/react-webpack5
pnpm add --save-dev @storybook/react-webpack5
```
2 changes: 1 addition & 1 deletion docs/snippets/svelte/svelte-vite-install.pnpm.js.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
pnpm install --save-dev @storybook/svelte-vite
pnpm add --save-dev @storybook/svelte-vite
```
2 changes: 1 addition & 1 deletion docs/snippets/svelte/svelte-webpack5-install.pnpm.js.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
pnpm install --save-dev @storybook/svelte-webpack5
pnpm add --save-dev @storybook/svelte-webpack5
```
2 changes: 1 addition & 1 deletion docs/snippets/svelte/sveltekit-install.pnpm.js.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
pnpm install --save-dev @storybook/sveltekit
pnpm add --save-dev @storybook/sveltekit
```
2 changes: 1 addition & 1 deletion docs/snippets/vue/vue3-vite-install.pnpm.js.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
pnpm install --save-dev @storybook/vue3-vite
pnpm add --save-dev @storybook/vue3-vite
```
2 changes: 1 addition & 1 deletion docs/snippets/vue/vue3-webpack5-install.pnpm.js.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
pnpm install --save-dev @storybook/vue3-webpack5
pnpm add --save-dev @storybook/vue3-webpack5
```
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
pnpm install --save-dev @storybook/web-components-vite
pnpm add --save-dev @storybook/web-components-vite
```
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```shell
pnpm install --save-dev @storybook/web-components-webpack5
pnpm add --save-dev @storybook/web-components-webpack5
```

0 comments on commit 88dd6e8

Please sign in to comment.