mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:01:16 +08:00
13 lines
446 B
Bash
Executable File
13 lines
446 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# This builds all the example storybooks for running chromatic on your dev machine
|
|
|
|
examples=(angular-cli ember-cli cra-kitchen-sink cra-ts-kitchen-sink html-kitchen-sink marko-cli mithril-kitchen-sink polymer-cli preact-kitchen-sink vue-kitchen-sink svelte-kitchen-sink official-storybook riot-kitchen-sink cra-react15)
|
|
|
|
for example in "${examples[@]}"
|
|
do
|
|
pushd examples/$example
|
|
yarn build-storybook
|
|
popd
|
|
done
|