Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 431 Bytes

CONTRIBUTING.md

File metadata and controls

28 lines (23 loc) · 431 Bytes

Contributing

This is a guide for contributors.

How to dev

  • npm run build: Build for production
  • npm run lint: Try static-checking
  • npm run test: Run tests

How to release

  • Wait for passing CI...
  • git switch main && git pull
  • rm -rf dist && npm run build
  • npm version <major|minor|patch>
  • npm publish
  • git push --follow-tags