minor updates

This commit is contained in:
Ittai Baratz 2021-11-25 22:38:36 -08:00
parent 0ec0f563cf
commit eeb14377db
2 changed files with 5 additions and 6 deletions

View File

@ -5,7 +5,7 @@ This project demonstrates a preview running in standalone mode using `parcel`.
To run the standalone preview:
```
yarn storybook
yarn storybook-preview
```
This starts a `parcel` dev server on port `1337`.
@ -13,10 +13,9 @@ This starts a `parcel` dev server on port `1337`.
To view the stories in the storybook UI:
```
cd ../official-storybook
npm run storybook -- --preview-url=http://localhost:1337/iframe.html # or yarn storybook...
yarn storybook
```
This runs the Storybook dev server, but instead of showing `official-storybook`'s stories, it attaches to the `parcel` dev server, lists its stories in the navigation, and shows its stories in the preview iframe.
This runs the Storybook dev server (Found in ../official-storybook), but instead of showing `official-storybook`'s stories, it attaches to the `parcel` dev server, lists its stories in the navigation, and shows its stories in the preview iframe.
> NOTE: This can be run from any working storybook, not just `official-storybook`!

View File

@ -3,8 +3,8 @@
"version": "6.4.0-rc.9",
"private": true,
"scripts": {
"storybook": "parcel ./storybook.html --port 1337",
"storybook-preview": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true start-storybook -p 9011 -c ../official-storybook --no-manager-cache --preview-url=http://localhost:1337/iframe.html"
"storybook-preview": "parcel ./storybook.html --port 1337",
"storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true start-storybook -p 9011 -c ../official-storybook --no-manager-cache --preview-url=http://localhost:1337/iframe.html"
},
"browserslist": "defaults",
"devDependencies": {