From 6dae6fdff950c951b602c65926b621ad108c7c49 Mon Sep 17 00:00:00 2001 From: Sulthan Mohaideen <32130871+SulthanNK@users.noreply.github.com> Date: Fri, 22 Apr 2022 05:52:11 +0530 Subject: [PATCH 1/3] Fix: [docs] updating cli docs command --- docs/get-started/install.md | 2 +- docs/get-started/installation-command-section/angular.mdx | 2 +- docs/get-started/installation-command-section/ember.mdx | 2 +- docs/get-started/installation-command-section/html.mdx | 2 +- docs/get-started/installation-command-section/preact.mdx | 2 +- docs/get-started/installation-command-section/react.mdx | 2 +- docs/get-started/installation-command-section/svelte.mdx | 2 +- docs/get-started/installation-command-section/vue.mdx | 2 +- .../get-started/installation-command-section/web-components.mdx | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/get-started/install.md b/docs/get-started/install.md index 7c24707d542..b15b8c5a9d9 100644 --- a/docs/get-started/install.md +++ b/docs/get-started/install.md @@ -21,7 +21,7 @@ title: 'Install Storybook'
-sb init is not made for empty projects +storybook init is not made for empty projects Storybook needs to be installed into a project that is already set up with a framework. It will not work on an empty project. There are many ways to bootstrap an app in a given framework, including: diff --git a/docs/get-started/installation-command-section/angular.mdx b/docs/get-started/installation-command-section/angular.mdx index 5d79b9f6544..33024a1d661 100644 --- a/docs/get-started/installation-command-section/angular.mdx +++ b/docs/get-started/installation-command-section/angular.mdx @@ -2,7 +2,7 @@ ```shell # Add Storybook: -npx sb init +npx storybook init ``` - Update your `angular.json` file to include Storybook's custom builder: diff --git a/docs/get-started/installation-command-section/ember.mdx b/docs/get-started/installation-command-section/ember.mdx index 4a5dc26f3c7..6ddc1d135c4 100644 --- a/docs/get-started/installation-command-section/ember.mdx +++ b/docs/get-started/installation-command-section/ember.mdx @@ -2,7 +2,7 @@ Use the Storybook CLI to install it with a couple of commands. Run this inside y ```shell # Add Storybook: -npx sb init +npx storybook init # Add Ember storybook adapter ember install @storybook/ember-cli-storybook diff --git a/docs/get-started/installation-command-section/html.mdx b/docs/get-started/installation-command-section/html.mdx index 3575943e26d..1062b008a7f 100644 --- a/docs/get-started/installation-command-section/html.mdx +++ b/docs/get-started/installation-command-section/html.mdx @@ -2,7 +2,7 @@ Use the Storybook CLI to install it in a single command. Run this inside your _e ```shell # Add Storybook: -npx sb init --type html +npx storybook init --type html ``` If you run into issues with the installation, check the [Troubleshooting section](#troubleshooting) below for guidance on how to solve it. diff --git a/docs/get-started/installation-command-section/preact.mdx b/docs/get-started/installation-command-section/preact.mdx index 7dab36ebede..5e7193f1163 100644 --- a/docs/get-started/installation-command-section/preact.mdx +++ b/docs/get-started/installation-command-section/preact.mdx @@ -2,7 +2,7 @@ Use the Storybook CLI to install it in a single command. Run this inside your _e ```shell # Add Storybook: -npx sb init +npx storybook init ``` If you run into issues with the installation, check the [Troubleshooting section](#troubleshooting) below for guidance on how to solve it. diff --git a/docs/get-started/installation-command-section/react.mdx b/docs/get-started/installation-command-section/react.mdx index 7dab36ebede..5e7193f1163 100644 --- a/docs/get-started/installation-command-section/react.mdx +++ b/docs/get-started/installation-command-section/react.mdx @@ -2,7 +2,7 @@ Use the Storybook CLI to install it in a single command. Run this inside your _e ```shell # Add Storybook: -npx sb init +npx storybook init ``` If you run into issues with the installation, check the [Troubleshooting section](#troubleshooting) below for guidance on how to solve it. diff --git a/docs/get-started/installation-command-section/svelte.mdx b/docs/get-started/installation-command-section/svelte.mdx index 7dab36ebede..5e7193f1163 100644 --- a/docs/get-started/installation-command-section/svelte.mdx +++ b/docs/get-started/installation-command-section/svelte.mdx @@ -2,7 +2,7 @@ Use the Storybook CLI to install it in a single command. Run this inside your _e ```shell # Add Storybook: -npx sb init +npx storybook init ``` If you run into issues with the installation, check the [Troubleshooting section](#troubleshooting) below for guidance on how to solve it. diff --git a/docs/get-started/installation-command-section/vue.mdx b/docs/get-started/installation-command-section/vue.mdx index 7dab36ebede..5e7193f1163 100644 --- a/docs/get-started/installation-command-section/vue.mdx +++ b/docs/get-started/installation-command-section/vue.mdx @@ -2,7 +2,7 @@ Use the Storybook CLI to install it in a single command. Run this inside your _e ```shell # Add Storybook: -npx sb init +npx storybook init ``` If you run into issues with the installation, check the [Troubleshooting section](#troubleshooting) below for guidance on how to solve it. diff --git a/docs/get-started/installation-command-section/web-components.mdx b/docs/get-started/installation-command-section/web-components.mdx index 7dab36ebede..5e7193f1163 100644 --- a/docs/get-started/installation-command-section/web-components.mdx +++ b/docs/get-started/installation-command-section/web-components.mdx @@ -2,7 +2,7 @@ Use the Storybook CLI to install it in a single command. Run this inside your _e ```shell # Add Storybook: -npx sb init +npx storybook init ``` If you run into issues with the installation, check the [Troubleshooting section](#troubleshooting) below for guidance on how to solve it. From 8aff5cb45cc2c2ed5dd386116a9b77a1611d67db Mon Sep 17 00:00:00 2001 From: Sulthan Mohaideen <32130871+SulthanNK@users.noreply.github.com> Date: Fri, 22 Apr 2022 06:08:43 +0530 Subject: [PATCH 2/3] Fix: [cli] updating "storybook" command --- lib/cli/src/automigrate/fixes/webpack5.ts | 2 +- lib/cli/src/automigrate/index.ts | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/cli/src/automigrate/fixes/webpack5.ts b/lib/cli/src/automigrate/fixes/webpack5.ts index 323c3a064fc..86779d598db 100644 --- a/lib/cli/src/automigrate/fixes/webpack5.ts +++ b/lib/cli/src/automigrate/fixes/webpack5.ts @@ -52,7 +52,7 @@ export const webpack5: Fix & CheckBuilder = { To upgrade to the latest stable release, run this from your project directory: - ${chalk.cyan('npx sb upgrade')} + ${chalk.cyan('npx storybook upgrade')} Add the ${chalk.cyan('--prerelease')} flag to get the latest prerelease. `.trim() diff --git a/lib/cli/src/automigrate/index.ts b/lib/cli/src/automigrate/index.ts index 9ff0d9f8713..ad2dd67d7c4 100644 --- a/lib/cli/src/automigrate/index.ts +++ b/lib/cli/src/automigrate/index.ts @@ -52,7 +52,9 @@ export const automigrate = async ({ fixId, dryRun, yes }: FixOptions = {}) => { } else { logger.info(`Skipping the ${chalk.cyan(f.id)} fix.`); logger.info(); - logger.info(`If you change your mind, run '${chalk.cyan('npx sb@next automigrate')}'`); + logger.info( + `If you change your mind, run '${chalk.cyan('npx storybook@next automigrate')}'` + ); } } } From cb9429b9fc498b13f7e33653acbb26c935a30c97 Mon Sep 17 00:00:00 2001 From: Sulthan Mohaideen <32130871+SulthanNK@users.noreply.github.com> Date: Fri, 22 Apr 2022 06:21:05 +0530 Subject: [PATCH 3/3] Fix: [core-server] updating "storybook" command --- lib/core-server/src/utils/update-check.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core-server/src/utils/update-check.ts b/lib/core-server/src/utils/update-check.ts index 1d517c41800..8de897134b1 100644 --- a/lib/core-server/src/utils/update-check.ts +++ b/lib/core-server/src/utils/update-check.ts @@ -38,7 +38,7 @@ export function createUpdateMessage(updateInfo: VersionCheck, version: string): try { const suffix = semver.prerelease(updateInfo.data.latest.version) ? '--prerelease' : ''; - const upgradeCommand = `npx sb@latest upgrade ${suffix}`.trim(); + const upgradeCommand = `npx storybook@latest upgrade ${suffix}`.trim(); updateMessage = updateInfo.success && semver.lt(version, updateInfo.data.latest.version) ? dedent`