You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
421 B
16 lines
421 B
# 将 umi 的代码转换为 bigfish(蚂蚁金服基于 umi 封装的内部框架)
|
|
|
|
rm -rf dist
|
|
node tool/bigfish.js
|
|
|
|
## sync to git http://gitlab.alipay-inc.com/bigfish/course-demo-bigfish
|
|
git clone git@gitlab.alipay-inc.com:bigfish/course-demo-bigfish.git
|
|
cd course-demo-bigfish
|
|
rm -rf ./*
|
|
rm .editorconfig .eslintrc .gitignore
|
|
cp -r ../dist/* ./
|
|
cp ../dist/.* ./
|
|
git add -A
|
|
git commit -m 'commit for bigfish'
|
|
git push
|