log4js-node/docs/contrib-guidelines.md
2022-06-23 01:00:07 +08:00

828 B

Want to help?

I love pull requests, and I need all the help I can get. However, there are a few rules to follow if you want a better chance of having your pull request merged:

  • Fork the repo, make a feature branch just for your changes
  • On the branch, only commit changes for the feature you're adding. Each pull request should concentrate on a single change - don't mix multiple features.
  • Your feature should be covered by tests. Run the tests with npm test. This is very important - without tests, your feature may be broken by subsequent changes and I may never know. Plus it's always nice to know that your changes work :-)
  • Don't bump the npm version - yours may not be the only feature that makes it into a version, and you don't know when your pull request may get merged (the version may have changed by then).