Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 377 Bytes

DEVELOP.md

File metadata and controls

25 lines (18 loc) · 377 Bytes

How to develop

Install dependencies

pnpm install

Watch changes and build

# Continuous build
pnpm run dev

# Continuous testing
pnpm run test-watch

Publish new release

  • Define the new version to use x.y.z
  • Run npm run version x.y.z
  • Commit and push the file modified
  • Tag the commit git tag x.y.z
  • Push the tag git push --tags