mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
# Conflicts: # lib/cli/package.json # package.json # scripts/build-storybooks.sh # yarn.lock
13 lines
463 B
Bash
Executable File
13 lines
463 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 rax-kitchen-sink)
|
|
|
|
for example in "${examples[@]}"
|
|
do
|
|
pushd examples/$example
|
|
yarn build-storybook
|
|
popd
|
|
done
|