storybook/scripts/build-storybooks.sh
Norbert de Langen 59b7e06c71 Merge branch 'next' into pr/trongthanh/5791
# Conflicts:
#	lib/cli/package.json
#	package.json
#	scripts/build-storybooks.sh
#	yarn.lock
2019-05-18 02:14:23 +02:00

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