* ci: test docs-publish * Specify to use prod * Babel should transpile with env set by webpack * chore: production defaults to true; set in --env.production by cli * Remove lingering merge issue * Add minimification plugins * Need relative URLs to find root assets * Default public url to forward slash in define plugin * Don't wrap w/ react-hot-loader if we're building for production * No need to log extensions * Minimize using terser; and minimize css * Import redux from es; this bypasses commonjs as import and fixes our "production build" warning * Split commone webpack build for now to test hotfix * postfix slash * undefined safe env access * Try to fix node_env prod issue w/ redux * Set NODE_ENV production for all prod builds * Syntax error * nix tests * Increase max amount of available memory * Don't run bundle analyzer by default
70 lines
1.4 KiB
Bash
70 lines
1.4 KiB
Bash
#!/bin/bash
|
|
|
|
# Set directory to location of this script
|
|
# https://stackoverflow.com/a/3355423/1867984
|
|
cd "$(dirname "$0")"
|
|
|
|
yarn -v
|
|
node -v
|
|
|
|
echo 'Installing Gitbook CLI'
|
|
|
|
yarn global bin
|
|
yarn config get prefix
|
|
yarn config set prefix ~/.yarn
|
|
export PATH="$PATH:`yarn global bin`"
|
|
|
|
echo 'Running Gitbook installation'
|
|
|
|
# Generate all version's GitBook output
|
|
# For each directory in /docs ...
|
|
cd ./../docs/
|
|
for D in *; do
|
|
if [ -d "${D}" ]; then
|
|
|
|
echo "Generating output for: ${D}"
|
|
cd "${D}"
|
|
|
|
# Clear previous output, generate new
|
|
rm -rf _book
|
|
gitbook install
|
|
gitbook build
|
|
|
|
cd ..
|
|
|
|
fi
|
|
done
|
|
|
|
# Move CNAME File into `latest`
|
|
cp CNAME ./latest/_book/CNAME
|
|
|
|
# Create a history folder in our latest version's output
|
|
mkdir ./latest/_book/history
|
|
|
|
# Move each version's files to latest's history folder
|
|
for D in *; do
|
|
if [ -d "${D}" ]; then
|
|
if [ "${D}" == v* ] ; then
|
|
|
|
echo "Moving ${D} to the latest version's history folder"
|
|
|
|
mkdir "./latest/_book/history/${D}"
|
|
cp -v -r "./${D}/_book"/* "./latest/_book/history/${D}"
|
|
|
|
fi
|
|
fi
|
|
done
|
|
|
|
# Back to repo root
|
|
cd ..
|
|
|
|
echo "Done generating documentation output"
|
|
echo 'STARTING PUBLISH'
|
|
|
|
# WILL ALWAYS FAIL IF INITIATED FROM PR BRANCH
|
|
./node_modules/.bin/gh-pages \
|
|
--silent \
|
|
--repo https://$GITHUB_TOKEN@github.com/OHIF/Viewers.git \
|
|
--message 'Autogenerated Message: [ci skip]' \
|
|
--dist docs/latest/_book
|