mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Merge pull request #18378 from storybookjs/chore_docs_minor_fixes_snippets
Chore: (Docs) Minor updates to docs and snippets
This commit is contained in:
commit
5bacf4d57f
@ -50,13 +50,22 @@ Once you've gone through the prompts, your `package.json` should look like:
|
||||
|
||||
### Build system
|
||||
|
||||
We'll need to add the necessary dependencies and make some adjustments. Run the following commands:
|
||||
We'll need to add the necessary dependencies and make some adjustments. Run the following command to install the required depedencies:
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
|
||||
<CodeSnippets
|
||||
paths={[
|
||||
'common/storybook-write-addon-install-dependencies.yarn.js.mdx',
|
||||
'common/storybook-write-addon-install-dependencies.npm.js.mdx',
|
||||
]}
|
||||
/>
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
Initialize a local Storybook instance to allow you to test your addon.
|
||||
|
||||
```shell
|
||||
# Installs React and Babel CLI
|
||||
yarn add react react-dom @babel/cli
|
||||
|
||||
# Adds Storybook:
|
||||
npx sb init
|
||||
```
|
||||
|
||||
|
@ -40,16 +40,34 @@ You can import `.json` files and have them expanded to a JavaScript object:
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
If you want to know the exact details of the Webpack config, the best way is to run either of the following:
|
||||
If you want to know the exact details of the Webpack config, the best way is to run either of the following commands:
|
||||
|
||||
```shell
|
||||
For development mode:
|
||||
|
||||
## Development mode
|
||||
yarn start-storybook --debug-webpack
|
||||
<!-- prettier-ignore-start -->
|
||||
|
||||
## Production mode
|
||||
yarn build-storybook --debug-webpack
|
||||
```
|
||||
<CodeSnippets
|
||||
paths={[
|
||||
'common/storybook-debug-webpack-dev.yarn.js.mdx',
|
||||
'common/storybook-debug-webpack-dev.npm.js.mdx',
|
||||
]}
|
||||
/>
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
For production mode:
|
||||
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
|
||||
<CodeSnippets
|
||||
paths={[
|
||||
'common/storybook-debug-webpack-prod.yarn.js.mdx',
|
||||
'common/storybook-debug-webpack-prod.npm.js.mdx',
|
||||
]}
|
||||
/>
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
### Code splitting
|
||||
|
||||
@ -199,5 +217,5 @@ When working with TypeScript projects, the default Webpack configuration may fai
|
||||
#### Learn more about builders
|
||||
|
||||
- [Vite builder](./vite.md) for bundling with Vite
|
||||
- [Webpack builder](./webpack.md) for bundling with Webpack
|
||||
- Webpack builder for bundling with Webpack
|
||||
- [Builder API](./builder-api.md) for building a Storybook builder
|
||||
|
@ -6,13 +6,16 @@ Contribute a new feature or bug fix to [Storybook's monorepo](https://github.com
|
||||
|
||||
## Initial setup
|
||||
|
||||
First [fork](https://docs.github.com/en/github/getting-started-with-github/quickstart/fork-a-repo) the Storybook repository then clone and build your fork locally. Run the following commands:
|
||||
Start by [forking](https://docs.github.com/en/github/getting-started-with-github/quickstart/fork-a-repo) the Storybook monorepo and cloning it locally.
|
||||
|
||||
```shell
|
||||
git clone https://github.com/your-username/storybook.git
|
||||
cd storybook
|
||||
yarn
|
||||
yarn bootstrap --core
|
||||
```
|
||||
|
||||
Navigate to the `storybook` directory and install the required dependencies with the following commands:
|
||||
|
||||
```shell
|
||||
yarn && yarn bootstrap --core
|
||||
```
|
||||
|
||||
## Run tests & examples
|
||||
@ -28,8 +31,7 @@ yarn test
|
||||
Once the tests finish, check if the examples are working with the following commands:
|
||||
|
||||
```shell
|
||||
cd examples/cra-ts-essentials
|
||||
yarn storybook
|
||||
cd examples/cra-ts-essentials && yarn storybook
|
||||
```
|
||||
|
||||
<div class="aside">
|
||||
@ -106,7 +108,7 @@ Storybook's monorepo is set up to rely on end-to-end testing with [Cypress](http
|
||||
|
||||
Before submitting your contribution, run the test suite one last time with:
|
||||
|
||||
```sh
|
||||
```shell
|
||||
yarn test
|
||||
```
|
||||
|
||||
@ -133,7 +135,7 @@ We encourage bug reports to include reproductions. In the same way that it's pos
|
||||
|
||||
To do so, run the following command in the root of the monorepo:
|
||||
|
||||
```sh
|
||||
```shell
|
||||
npx sb@next link https://github.com/your-username/your-project.git
|
||||
```
|
||||
|
||||
@ -141,7 +143,7 @@ This command creates a project `../storybook-repros/your-project`, and automatic
|
||||
|
||||
If you already have a reproduction on your local machine, you can similarly link it to your monorepo dev setup with the `--local` flag:
|
||||
|
||||
```sh
|
||||
```shell
|
||||
npx sb@next link --local /path/to/local-repro-directory
|
||||
```
|
||||
|
||||
|
@ -89,11 +89,15 @@ Go through the rest of the documentation and repeat the process.
|
||||
|
||||
Before submitting your contribution, we advise you to check your work against the Storybook website. Doing this prevents last-minute issues with the documentation and is also an excellent way for the maintainers to merge faster once you submit the pull request. However, failing to do so will lead one of the maintainers to notify you that your contribution has an issue.
|
||||
|
||||
Start by forking [frontpage repo](https://github.com/storybookjs/frontpage). Then, clone and install the dependencies with the following commands:
|
||||
Start by forking [frontpage repo](https://github.com/storybookjs/frontpage) and cloning it locally.
|
||||
|
||||
```shell
|
||||
git clone https://github.com/your-username/frontpage.git
|
||||
cd frontpage
|
||||
```
|
||||
|
||||
Navigate to the `frontpage` directory and install the required dependencies with the following command:
|
||||
|
||||
```shell
|
||||
yarn
|
||||
```
|
||||
|
||||
|
@ -18,13 +18,16 @@ The interactions are written using a Storybook-instrumented version of [Testing
|
||||
|
||||
Since Interactions is still experimental, it doesn't yet ship with Storybook by default. As such, you'll have to install it. You may also want to add our wrappers for Testing Library and Jest.
|
||||
|
||||
```shell
|
||||
# With npm
|
||||
npm install @storybook/addon-interactions @storybook/jest @storybook/testing-library --save-dev
|
||||
<!-- prettier-ignore-start -->
|
||||
|
||||
# With yarn
|
||||
yarn add --dev @storybook/addon-interactions @storybook/jest @storybook/testing-library
|
||||
```
|
||||
<CodeSnippets
|
||||
paths={[
|
||||
'common/storybook-addon-interactions-addon-full-install.yarn.js.mdx',
|
||||
'common/storybook-addon-interactions-addon-full-install.npm.js.mdx',
|
||||
]}
|
||||
/>
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
Next, update [`.storybook/main.js`](../configure/overview.md#configure-story-rendering) to the following:
|
||||
|
||||
|
@ -18,13 +18,16 @@ If you ran `sb init` to include Storybook in your project, the Essentials addon
|
||||
|
||||
If you're upgrading from a previous Storybook version, you'll need to run the following command in your terminal:
|
||||
|
||||
```shell
|
||||
#With npm
|
||||
npm install -D @storybook/addon-essentials
|
||||
<!-- prettier-ignore-start -->
|
||||
|
||||
#With yarn
|
||||
yarn add -D @storybook/addon-essentials
|
||||
```
|
||||
<CodeSnippets
|
||||
paths={[
|
||||
'common/storybook-addon-essentials-install.yarn.js.mdx',
|
||||
'common/storybook-addon-essentials-install.npm.js.mdx',
|
||||
]}
|
||||
/>
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
Update your Storybook configuration (in [`.storybook/main.js`](../configure/overview.md#configure-story-rendering)) to include the Essentials addon.
|
||||
|
||||
@ -44,14 +47,16 @@ Essentials is "zero-config”. It comes with a recommended configuration out of
|
||||
|
||||
If you need to reconfigure any of the [individual Essentials addons](https://storybook.js.org/addons/tag/essentials), install them manually by following the installation instructions, register them in your Storybook configuration file (i.e., [`.storybook/main.js`](../configure/overview.md#configure-story-rendering)) and adjust the configuration to suit your needs. For example:
|
||||
|
||||
```shell
|
||||
#With npm
|
||||
npm install -D @storybook/addon-actions
|
||||
<!-- prettier-ignore-start -->
|
||||
|
||||
<CodeSnippets
|
||||
paths={[
|
||||
'common/storybook-addon-actions-install.yarn.js.mdx',
|
||||
'common/storybook-addon-actions-install.npm.js.mdx',
|
||||
]}
|
||||
/>
|
||||
|
||||
#With yarn
|
||||
yarn add -D @storybook/addon-actions
|
||||
```
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
|
||||
|
@ -21,7 +21,8 @@ First, we'll need to build Storybook as a static web application. The functional
|
||||
paths={[
|
||||
'angular/custom-build-script-production.script-for-builder.js.mdx',
|
||||
'angular/build-storybook-production-mode.with-builder.js.mdx',
|
||||
'common/build-storybook-production-mode.js.mdx',
|
||||
'common/build-storybook-production-mode.yarn.js.mdx',
|
||||
'common/build-storybook-production-mode.npm.js.mdx',
|
||||
]}
|
||||
/>
|
||||
|
||||
@ -49,13 +50,16 @@ To get started, sign up with your GitHub, GitLab, Bitbucket, or email and genera
|
||||
|
||||
Next, install the [Chromatic CLI](https://www.npmjs.com/package/chromatic) package from npm:
|
||||
|
||||
```shell
|
||||
# With npm
|
||||
npm install --save-dev chromatic
|
||||
<!-- prettier-ignore-start -->
|
||||
|
||||
# With yarn
|
||||
yarn add --dev chromatic
|
||||
```
|
||||
<CodeSnippets
|
||||
paths={[
|
||||
'common/chromatic-install.yarn.js.mdx',
|
||||
'common/chromatic-install.npm.js.mdx',
|
||||
]}
|
||||
/>
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
Run the following command after the package finishes installing. Make sure that you replace `your-project-token` with your own project token.
|
||||
|
||||
|
@ -1,7 +0,0 @@
|
||||
```shell
|
||||
# With yarn
|
||||
yarn build-storybook
|
||||
|
||||
# With npm
|
||||
npm run build-storybook
|
||||
```
|
@ -0,0 +1,3 @@
|
||||
```shell
|
||||
npm run build-storybook
|
||||
```
|
@ -0,0 +1,3 @@
|
||||
```shell
|
||||
yarn build-storybook
|
||||
```
|
3
docs/snippets/common/chromatic-install.npm.js.mdx
Normal file
3
docs/snippets/common/chromatic-install.npm.js.mdx
Normal file
@ -0,0 +1,3 @@
|
||||
```shell
|
||||
npm install chromatic --save-dev
|
||||
```
|
3
docs/snippets/common/chromatic-install.yarn.js.mdx
Normal file
3
docs/snippets/common/chromatic-install.yarn.js.mdx
Normal file
@ -0,0 +1,3 @@
|
||||
```shell
|
||||
yarn add --dev chromatic
|
||||
```
|
@ -0,0 +1,3 @@
|
||||
```shell
|
||||
npm install @storybook/addon-actions --save-dev
|
||||
```
|
@ -0,0 +1,3 @@
|
||||
```shell
|
||||
yarn add --dev @storybook/addon-actions
|
||||
```
|
@ -0,0 +1,3 @@
|
||||
```shell
|
||||
npm install @storybook/addon-actions --save-dev
|
||||
```
|
@ -0,0 +1,3 @@
|
||||
```shell
|
||||
yarn add --dev @storybook/addon-essentials
|
||||
```
|
@ -0,0 +1,3 @@
|
||||
```shell
|
||||
npm install @storybook/addon-storyshots --save-dev
|
||||
```
|
@ -0,0 +1,3 @@
|
||||
```shell
|
||||
yarn add --dev @storybook/addon-storyshots
|
||||
```
|
@ -0,0 +1,3 @@
|
||||
```shell
|
||||
npm run storybook -- --debug-webpack
|
||||
```
|
@ -0,0 +1,3 @@
|
||||
```shell
|
||||
yarn storybook --debug-webpack
|
||||
```
|
@ -0,0 +1,3 @@
|
||||
```shell
|
||||
npm run build-storybook -- --debug-webpack
|
||||
```
|
@ -0,0 +1,3 @@
|
||||
```shell
|
||||
yarn build-storybook --debug-webpack
|
||||
```
|
@ -0,0 +1,3 @@
|
||||
```shell
|
||||
npm install react react-dom @babel/cli
|
||||
```
|
@ -0,0 +1,3 @@
|
||||
```shell
|
||||
yarn add react react-dom @babel/cli
|
||||
```
|
@ -10,13 +10,16 @@ We recommend installing Storybook's [`addon-interactions`](https://storybook.js.
|
||||
|
||||
Run the following command to install the addon and the required dependencies.
|
||||
|
||||
```shell
|
||||
# With npm
|
||||
npm install @storybook/addon-interactions @storybook/testing-library --save-dev
|
||||
<!-- prettier-ignore-start -->
|
||||
|
||||
# With yarn
|
||||
yarn add --dev @storybook/addon-interactions @storybook/testing-library
|
||||
```
|
||||
<CodeSnippets
|
||||
paths={[
|
||||
'common/storybook-addon-interactions-addon-full-install.yarn.js.mdx',
|
||||
'common/storybook-addon-interactions-addon-full-install.npm.js.mdx',
|
||||
]}
|
||||
/>
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
Update your Storybook configuration (in `.storybook/main.js`) to include the interactions addon.
|
||||
|
||||
|
@ -14,13 +14,16 @@ Storybook is a helpful tool for snapshot testing because every story is essentia
|
||||
|
||||
Run the following command to install Storyshots:
|
||||
|
||||
```shell
|
||||
# With npm
|
||||
npm install @storybook/addon-storyshots --save-dev
|
||||
<!-- prettier-ignore-start -->
|
||||
|
||||
# With yarn
|
||||
yarn add --dev @storybook/addon-storyshots
|
||||
```
|
||||
<CodeSnippets
|
||||
paths={[
|
||||
'common/storybook-addon-storyshots-install.yarn.js.mdx',
|
||||
'common/storybook-addon-storyshots-install.npm.js.mdx',
|
||||
]}
|
||||
/>
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
Add a test file to your environment with the following contents to configure Storyshots:
|
||||
|
||||
|
@ -20,13 +20,18 @@ To get started, sign up with your [GitHub](https://github.com/), [GitLab](https:
|
||||
|
||||
Next, install the [chromatic](https://www.npmjs.com/package/chromatic) CLI package from npm:
|
||||
|
||||
```shell
|
||||
# With npm
|
||||
npm install chromatic --save-dev
|
||||
<!-- prettier-ignore-start -->
|
||||
|
||||
<CodeSnippets
|
||||
paths={[
|
||||
'common/chromatic-install.yarn.js.mdx',
|
||||
'common/chromatic-install.npm.js.mdx',
|
||||
]}
|
||||
/>
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
|
||||
# With yarn
|
||||
yarn add --dev chromatic
|
||||
```
|
||||
|
||||
Run the following command after the package finishes installing:
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user