Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 1.04 KB

CONTRIBUTING.md

File metadata and controls

40 lines (30 loc) · 1.04 KB

Contributing to forge

Want to contribute to forge? Great! Here are a few notes:

Code

Versioning

Release Process

  • commit changes
  • $EDITOR package.json: update to release version and remove -dev suffix.
  • git commit package.json -m "Release {version}."
  • git tag {version}
  • $EDITOR package.json: update to next version and add -dev suffix.
  • git commit package.json -m "Start {next-version}."
  • git push
  • git push --tags

To ensure a clean upload, use a clean updated checkout, and run the following:

  • git checkout {version}
  • npm publish