mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
update a bunch of references to build-storybook
command in the docs to storybook build
This commit is contained in:
parent
08d51e8ff7
commit
febc8c22e3
@ -2,22 +2,22 @@
|
||||
|
||||
[Storybook Docs](../README.md) consists of two basic mechanisms, [DocsPage](docspage.md) and [MDX](mdx.md). But how should you use them in your project?
|
||||
|
||||
- [Component Story Format (CSF) with DocsPage](#component-story-format-csf-with-docspage)
|
||||
- [Pure MDX Stories](#pure-mdx-stories)
|
||||
- [CSF Stories with MDX Docs](#csf-stories-with-mdx-docs)
|
||||
- [CSF Stories with arbitrary MDX](#csf-stories-with-arbitrary-mdx)
|
||||
- [Mixing storiesOf with CSF/MDX](#mixing-storiesof-with-csfmdx)
|
||||
- [Migrating from notes/info addons](#migrating-from-notesinfo-addons)
|
||||
- [Exporting documentation](#exporting-documentation)
|
||||
- [Disabling docs stories](#disabling-docs-stories)
|
||||
- [DocsPage](#docspage)
|
||||
- [MDX Stories](#mdx-stories)
|
||||
- [Controlling a story's view mode](#controlling-a-storys-view-mode)
|
||||
- [Reordering Docs tab first](#reordering-docs-tab-first)
|
||||
- [Customizing source snippets](#customizing-source-snippets)
|
||||
- [Overwriting docs container](#overwriting-docs-container)
|
||||
- [Add description to individual stories](#add-description-to-individual-stories)
|
||||
- [More resources](#more-resources)
|
||||
1. [Component Story Format (CSF) with DocsPage](#component-story-format-csf-with-docspage)
|
||||
2. [Pure MDX Stories](#pure-mdx-stories)
|
||||
3. [CSF Stories with MDX Docs](#csf-stories-with-mdx-docs)
|
||||
4. [CSF Stories with arbitrary MDX](#csf-stories-with-arbitrary-mdx)
|
||||
5. [Mixing storiesOf with CSF/MDX](#mixing-storiesof-with-csfmdx)
|
||||
6. [Migrating from notes/info addons](#migrating-from-notesinfo-addons)
|
||||
7. [Exporting documentation](#exporting-documentation)
|
||||
8. [Disabling docs stories](#disabling-docs-stories)
|
||||
1. [DocsPage](#docspage)
|
||||
2. [MDX Stories](#mdx-stories)
|
||||
9. [Controlling a story's view mode](#controlling-a-storys-view-mode)
|
||||
10. [Reordering Docs tab first](#reordering-docs-tab-first)
|
||||
11. [Customizing source snippets](#customizing-source-snippets)
|
||||
12. [Overwriting docs container](#overwriting-docs-container)
|
||||
13. [Add description to individual stories](#add-description-to-individual-stories)
|
||||
14. [More resources](#more-resources)
|
||||
|
||||
## Component Story Format (CSF) with DocsPage
|
||||
|
||||
@ -184,7 +184,7 @@ The Storybook UI is a workshop for developing components in isolation. Storybook
|
||||
To address this, we’ve added a CLI flag to only export the docs. This flag is also available in dev mode:
|
||||
|
||||
```sh
|
||||
yarn build-storybook --docs
|
||||
yarn storybook build --docs
|
||||
```
|
||||
|
||||
## Disabling docs stories
|
||||
|
@ -6,8 +6,8 @@ It contains:
|
||||
|
||||
- CLI arg parsing
|
||||
- Storybook UI "manager" webpack configuration
|
||||
- `start-storybook` dev server
|
||||
- `build-storybook` static builder
|
||||
- `storybook dev` dev server
|
||||
- `storybook build` static builder
|
||||
- presets handling
|
||||
|
||||
The "preview" (aka iframe) side is implemented in pluggable builders:
|
||||
|
@ -25,11 +25,11 @@ Type: `TestBuildFlags`
|
||||
}
|
||||
```
|
||||
|
||||
Configures Storybook's production builds for performance testing purposes by disabling certain features from the build. When running `build-storybook`, this feature is enabled by setting the `--test` [flag](./cli-options.md#build).
|
||||
Configures Storybook's production builds for performance testing purposes by disabling certain features from the build. When running `storybook build`, this feature is enabled by setting the `--test` [flag](./cli-options.md#build).
|
||||
|
||||
<Callout variant="info" icon="💡">
|
||||
|
||||
The options documented on this page are automatically enabled when the `--test` flag is provided to the `build-storybook` command. We encourage you to override these options only if you need to disable a specific feature for your project or if you are debugging a build issue.
|
||||
The options documented on this page are automatically enabled when the `--test` flag is provided to the `storybook build` command. We encourage you to override these options only if you need to disable a specific feature for your project or if you are debugging a build issue.
|
||||
|
||||
</Callout>
|
||||
|
||||
|
@ -105,7 +105,7 @@ You can also use specific files for specific modes. Add a `.env.development` or
|
||||
|
||||
</Callout>
|
||||
|
||||
You can also pass these environment variables when you are [building your Storybook](../sharing/publish-storybook.md) with `build-storybook`.
|
||||
You can also pass these environment variables when you are [building your Storybook](../sharing/publish-storybook.md) with `storybook build`.
|
||||
|
||||
Then they'll be hardcoded to the static version of your Storybook.
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
```shell
|
||||
npm run build-storybook
|
||||
npm run storybook build
|
||||
```
|
||||
|
@ -1,3 +1,3 @@
|
||||
```shell
|
||||
pnpm run build-storybook
|
||||
pnpm run storybook build
|
||||
```
|
||||
|
@ -1,3 +1,3 @@
|
||||
```shell
|
||||
yarn build-storybook
|
||||
yarn storybook build
|
||||
```
|
||||
|
@ -33,7 +33,7 @@ jobs:
|
||||
- uses: bitovi/github-actions-storybook-to-github-pages@v1.0.3
|
||||
with:
|
||||
install_command: yarn install # default: npm ci
|
||||
build_command: yarn build-storybook # default: npm run build-storybook
|
||||
build_command: yarn storybook build # default: npm run storybook build
|
||||
path: storybook-static # default: dist/storybook
|
||||
checkout: false # default: true
|
||||
```
|
||||
|
@ -1,3 +1,3 @@
|
||||
```shell
|
||||
npm run build-storybook -- --test
|
||||
npm run storybook build -- --test
|
||||
```
|
||||
|
@ -1,3 +1,3 @@
|
||||
```shell
|
||||
pnpm run build-storybook --test
|
||||
pnpm run storybook build --test
|
||||
```
|
||||
|
@ -1,3 +1,3 @@
|
||||
```shell
|
||||
yarn build-storybook --test
|
||||
yarn storybook build --test
|
||||
```
|
||||
|
@ -1,3 +1,3 @@
|
||||
```shell
|
||||
npm run build-storybook -- --debug-webpack
|
||||
npm run storybook build -- --debug-webpack
|
||||
```
|
||||
|
@ -1,3 +1,3 @@
|
||||
```shell
|
||||
yarn build-storybook --debug-webpack
|
||||
yarn storybook build --debug-webpack
|
||||
```
|
||||
|
@ -17,7 +17,7 @@ jobs:
|
||||
- name: Install Playwright
|
||||
run: npx playwright install --with-deps
|
||||
- name: Build Storybook
|
||||
run: yarn build-storybook --quiet
|
||||
run: yarn storybook build --quiet
|
||||
- name: Serve Storybook and run tests
|
||||
run: |
|
||||
npx concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \
|
||||
|
@ -30,7 +30,7 @@ There's some caveats to this build mode, as to the normal Storybook build:
|
||||
|
||||
## Publish Storybook's documentation
|
||||
|
||||
You can also publish your documentation, the same you would [publish](../sharing/publish-storybook.md) your Storybook. You can use the `--docs` flag with `build-storybook` command. We recommend as well including it as a script in your `package.json` file:
|
||||
You can also publish your documentation, the same you would [publish](../sharing/publish-storybook.md) your Storybook. You can use the `--docs` flag with `storybook build` command. We recommend as well including it as a script in your `package.json` file:
|
||||
|
||||
```json
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user