mirror of
https://github.com/langyuxiansheng/vue-aliplayer-v2.git
synced 2025-04-05 19:41:39 +08:00
45 lines
543 B
Bash
45 lines
543 B
Bash
# 打包 => dist
|
|
npm run build;
|
|
|
|
# 打包 插件
|
|
npm run lib;
|
|
|
|
#推送到npmjs
|
|
|
|
npm publish;
|
|
|
|
# 更新gh-pages
|
|
|
|
|
|
git branch -D gh-pages;
|
|
|
|
echo "删除gh-pages";
|
|
|
|
git checkout -b gh-pages;
|
|
|
|
echo "创建并切换到gh-pages";
|
|
|
|
git add -f dist;
|
|
|
|
git commit -m 'create gh-pages';
|
|
|
|
git push origin -d gh-pages;
|
|
|
|
git subtree push --prefix dist origin gh-pages;
|
|
|
|
echo "已推送gh-pages";
|
|
|
|
# 推送完成后切换回master
|
|
git checkout master;
|
|
|
|
echo "切换回master";
|
|
|
|
git add .;
|
|
|
|
git commit -m "更新lib包";
|
|
|
|
git pull;
|
|
|
|
git push;
|
|
|
|
echo "完成"; |