Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 335 Bytes

PUBLISHING.md

File metadata and controls

22 lines (18 loc) · 335 Bytes

Publishing

yarn ci:check
yarn build
# update changelog&readme
npm version 1.1.1-1

# publish as prerelease
npm publish --tag next
git push && git push --tags

# publish normally
npm publish
git push && git push --tags

# update docs
git checkout gh-pages
git merge main
cd demo && yarn gh-pages
# commit result and push