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