mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 00:31:05 +08:00
21 lines
166 B
Bash
Executable File
21 lines
166 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e -x
|
|
|
|
cd ..
|
|
yarn unlink
|
|
yarn link
|
|
cd test
|
|
|
|
rm -rf run
|
|
cp -r fixtures run
|
|
cd run
|
|
|
|
for dir in *
|
|
do
|
|
cd $dir
|
|
getstorybook
|
|
cd ..
|
|
done
|
|
|
|
echo SUCCESS |