storybook/scripts/build-storybooks.sh
2018-10-03 00:50:39 -07:00

13 lines
384 B
Bash
Executable File

#!/bin/sh
#
# This builds all the example storybooks for running chromatic on your dev machine
examples=(angular-cli ember-cli cra-kitchen-sink html-kitchen-sink marko-cli mithril-kitchen-sink polymer-cli vue-kitchen-sink svelte-kitchen-sink official-storybook riot-kitchen-sink)
for example in "${examples[@]}"
do
pushd examples/$example
yarn build-storybook
popd
done