Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions docs/_snippets/init-command.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
```shell renderer="common" language="js" packageManager="npm"
npx storybook@next init
npx storybook@latest init
```

```shell renderer="common" language="js" packageManager="pnpm"
pnpm dlx storybook@next init
pnpm dlx storybook@latest init
```

```shell renderer="common" language="js" packageManager="yarn"
yarn dlx storybook@next init
yarn dlx storybook@latest init
```
6 changes: 3 additions & 3 deletions docs/_snippets/storybook-upgrade.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
```shell renderer="common" language="js" packageManager="npm"
npx storybook@next upgrade
npx storybook@latest upgrade
```

```shell renderer="common" language="js" packageManager="pnpm"
pnpm dlx storybook@next upgrade
pnpm dlx storybook@latest upgrade
```

```shell renderer="common" language="js" packageManager="yarn"
yarn dlx storybook@next upgrade
yarn dlx storybook@latest upgrade
```
2 changes: 1 addition & 1 deletion docs/get-started/frameworks/angular.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ export const WithCustomProvider: Story = {

The Storybook [Angular builder](https://angular.io/guide/glossary#builder) is a way to run Storybook in an Angular workspace. It is a drop-in replacement for running `storybook dev` and `storybook build` directly.

You can run `npx storybook@next automigrate` to try letting Storybook detect and automatically fix your configuration. Otherwise, you can follow the next steps to adjust your configuration manually.
You can run `npx storybook@latest automigrate` to try letting Storybook detect and automatically fix your configuration. Otherwise, you can follow the next steps to adjust your configuration manually.

#### Do you have only one Angular project in your workspace?

Expand Down