mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:51:28 +08:00
118 lines
3.2 KiB
Bash
Executable File
118 lines
3.2 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# Make sure to set $BUILD_CONTEXT in the Netlify "Deploy Settings"
|
|
echo "Building for Netlify. BUILD_CONTEXT: $BUILD_CONTEXT"
|
|
|
|
# Fixes
|
|
npm i -g process-nextick-args util-deprecate gauge
|
|
|
|
yarn
|
|
yarn bootstrap --core
|
|
|
|
if [ "$BUILD_CONTEXT" = "DOCS" ]; then
|
|
pushd docs
|
|
yarn install
|
|
popd
|
|
yarn docs:build
|
|
mv docs/public netlify-build
|
|
elif [ "$BUILD_CONTEXT" = "CRA" ]; then
|
|
pushd examples/cra-kitchen-sink
|
|
yarn add tapable # quirk with netlify build instance
|
|
yarn build-storybook --quiet
|
|
mv storybook-static ../../netlify-build
|
|
popd
|
|
elif [ "$BUILD_CONTEXT" = "CRA_TS" ]; then
|
|
pushd examples/cra-ts-kitchen-sink
|
|
yarn add tapable # quirk with netlify build instance
|
|
yarn build-storybook --quiet
|
|
mv storybook-static ../../netlify-build
|
|
popd
|
|
elif [ "$BUILD_CONTEXT" = "CRA_REACT15" ]; then
|
|
pushd examples/cra-react15
|
|
yarn add tapable # quirk with netlify build instance
|
|
yarn build-storybook --quiet
|
|
mv storybook-static ../../netlify-build
|
|
popd
|
|
elif [ "$BUILD_CONTEXT" = "VUE" ]; then
|
|
echo "netlify-build Vue examples"
|
|
pushd examples/vue-kitchen-sink
|
|
yarn
|
|
yarn build-storybook --quiet
|
|
mv storybook-static ../../netlify-build
|
|
popd
|
|
elif [ "$BUILD_CONTEXT" = "SVELTE" ]; then
|
|
echo "netlify-build Svelte examples"
|
|
pushd examples/svelte-kitchen-sink
|
|
yarn
|
|
yarn build-storybook --quiet
|
|
mv storybook-static ../../netlify-build
|
|
popd
|
|
elif [ "$BUILD_CONTEXT" = "ANGULAR" ]; then
|
|
echo "netlify-build Angular examples"
|
|
pushd examples/angular-cli
|
|
yarn
|
|
yarn build-storybook --quiet
|
|
mv storybook-static ../../netlify-build
|
|
popd
|
|
elif [ "$BUILD_CONTEXT" = "EMBER" ]; then
|
|
echo "netlify-build Ember examples"
|
|
pushd examples/ember-cli
|
|
yarn
|
|
yarn build-storybook --quiet
|
|
mv storybook-static ../../netlify-build
|
|
popd
|
|
elif [ "$BUILD_CONTEXT" = "POLYMER" ]; then
|
|
echo "netlify-build Polymer examples"
|
|
pushd examples/polymer-cli
|
|
yarn
|
|
yarn build-storybook --quiet
|
|
mv storybook-static ../../netlify-build
|
|
popd
|
|
elif [ "$BUILD_CONTEXT" = "PREACT" ]; then
|
|
echo "netlify-build Preact examples"
|
|
pushd examples/preact-kitchen-sink
|
|
yarn
|
|
yarn build-storybook --quiet
|
|
mv storybook-static ../../netlify-build
|
|
popd
|
|
elif [ "$BUILD_CONTEXT" = "MITHRIL" ]; then
|
|
echo "netlify-build Mithril examples"
|
|
pushd examples/mithril-kitchen-sink
|
|
yarn
|
|
yarn build-storybook --quiet
|
|
mv storybook-static ../../netlify-build
|
|
popd
|
|
elif [ "$BUILD_CONTEXT" = "MARKO" ]; then
|
|
echo "netlify-build Marko examples"
|
|
pushd examples/marko-cli
|
|
yarn
|
|
yarn build-storybook --quiet
|
|
mv storybook-static ../../netlify-build
|
|
popd
|
|
elif [ "$BUILD_CONTEXT" = "HTML" ]; then
|
|
echo "netlify-build HTML examples"
|
|
pushd examples/html-kitchen-sink
|
|
yarn
|
|
yarn build-storybook --quiet
|
|
mv storybook-static ../../netlify-build
|
|
popd
|
|
elif [ "$BUILD_CONTEXT" = "OFFICIAL" ]; then
|
|
echo "netlify-build official examples"
|
|
pushd examples/official-storybook
|
|
yarn
|
|
yarn build-storybook --quiet
|
|
mv storybook-static ../../netlify-build
|
|
popd
|
|
elif [ "$BUILD_CONTEXT" = "RIOT" ]; then
|
|
echo "netlify-build riot examples"
|
|
pushd examples/riot-kitchen-sink
|
|
yarn
|
|
yarn build-storybook --quiet
|
|
mv storybook-static ../../netlify-build
|
|
popd
|
|
else
|
|
RED='\033[0;31m'
|
|
NOCOLOR='\033[0m'
|
|
echo "Unrecognized BUILD_CONTEXT \"${RED}$BUILD_CONTEXT${NOCOLOR}\"" 1>&2
|
|
fi
|