代码拉取完成,页面将自动刷新
同步操作将从 Maple/CGNPC 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/bin/sh
echo "======> run FE's build procedure start <======"
startTime=`date "+%s"`
echo "remove node_modules folder"
rm -rf ./node_modules
yarn install
if [ $? == 1 ] ;then
echo "install dependencies failed"
exit 1
fi
./node_modules/.bin/sfe-service build $1
if [ $? == 1 ] ;then
echo "build failed"
exit 1
fi
chmod -R 777 ./dist/
#编译完成,所有文件已放到项目的dist目录下,删除在过程中可能引入的.git隐藏文件夹
find dist -type d -name ".git" -exec rm -r {} \;
rc=$?; if [[ $rc == 1 ]]; then exit $rc; fi
rm -fr ./node_modules
endTime=`date "+%s"`
cost=$[$endTime-$startTime]
echo " ------------------------------------------------------------------------"
echo " FE's BUILD SUCCESS"
echo " ------------------------------------------------------------------------"
echo " Total time: ${cost}s"
echo " Finished at: `date '+%Y-%m-%d %H:%M:%S'`"
echo " ------------------------------------------------------------------------"
echo "======> run FE's build procedure end <======"
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。