選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

CONTRIBUTING.md 513 B

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. ```