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.
|
|
|
# deploy Demo
|
|
|
|
npm run build
|
|
|
|
cd dist
|
|
|
|
git init
|
|
|
|
git remote add origin https://github.com/mengshukeji/LuckysheetDemo.git
|
|
|
|
git add .
|
|
|
|
git commit -m 'deploy Luckysheet demo'
|
|
|
|
git push -f origin master:gh-pages
|
|
|
|
|
|
|
|
# deploy Docs
|
|
|
|
npm run docs:build
|
|
|
|
cd docs/.vuepress/dist
|
|
|
|
git init
|
|
|
|
git remote add origin https://github.com/mengshukeji/LuckysheetDocs.git
|
|
|
|
git add .
|
|
|
|
git commit -m 'deploy Luckysheet docs'
|
|
|
|
git push -f origin master:gh-pages
|
|
|
|
|
|
|
|
# replease
|
|
|
|
npm run build
|
|
|
|
npm run release -- --release-as patch
|
|
|
|
git push --follow-tags origin master
|
|
|
|
npm publish
|
|
|
|
|
|
|
|
# only publish
|
|
|
|
npm run build
|
|
|
|
npm version patch
|
|
|
|
npm publish
|