Skip to content

Latest commit

 

History

History
33 lines (30 loc) · 508 Bytes

README.md

File metadata and controls

33 lines (30 loc) · 508 Bytes

本地测试

node version >= 10.12.0 npm run start

上线

git checkout dev
npm run build_dev
git add .
git commit -m 'msg'
git push origin dev
npm run publish_test

上线 Test 环境

git checkout test
npm run build_test
git add .
git commit -m 'msg'
git push origin test
npm run publish_test

上线 Prod 环境

git checkout master
npm run build_prod
git add .
git commit -m 'msg'
git push origin master
npm run publish_prod