storybook/scripts/build-storybooks.sh
2019-04-10 11:45:16 +08:00

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