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.

CONTRIBUTING.md 513 B

3 years ago
1234567891011121314151617181920
  1. # Contributing
  2. Please feel free to file GitHub Issues or propose Pull Requests. We're always happy to discuss
  3. improvements to this library!
  4. ## Testing
  5. ```shell
  6. npm test
  7. ```
  8. ## Releasing
  9. Releases are supposed to be done from master, version bumping is automated through
  10. [`standard-version`](https://github.com/conventional-changelog/standard-version):
  11. ```shell
  12. npm run release -- --dry-run # verify output manually
  13. npm run release # follow the instructions from the output of this command
  14. ```