Created
September 27, 2019 12:59
-
-
Save ycjcl868/544c15481fb61b2d762918d4f401a855 to your computer and use it in GitHub Desktop.
pre-antd-pro.sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# !/bin/bash | |
if [ -d ./pro_site ] | |
then | |
echo "pro_site existed" | |
else | |
git clone https://github.com/ant-design/ant-design-pro --depth=1 ./pro_site | |
fi | |
yarn | |
yarn bootstrap | |
yarn build | |
yarn ui:build | |
cd packages/umi | |
yarn link | |
cd ../.. | |
cd pro_site | |
yarn | |
yarn link umi | |
yarn build | |
yarn functions:build |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment