Thank you for considering contributing to this project!
Before you doing so, please read the following simple steps on how to contribute. This will make life easier and help to avoid wasting time on things, which are not requested.
Check out the short, but concise development manual for tools, structure, and commands.
-
First of all, open an issue in the repository using the bug tracker and describe the contribution you would like to make, the bug you found or any other ideas you have. This will help to get you started on the right foot.
-
If it makes sense, add the platform and software information (e.g.: operating system, Node.js version etc.) and/or screenshots so we can see what you are seeing.
-
It is recommended to wait for feedback before continuing to the next steps. However, if the issue is clear (e.g.: a typo) and the fix is simple, you can continue and fix it.
-
Fork the project in your account and create a branch with your fix using this naming style: some-awesome-feature or some-issue-fix.
-
Commit your changes in that branch. Make sure you follow StandardJS and that the tests ran without errors:
# Checks the coding style npm run check # Checks and prepares the project before committing npm run prepare
-
In package.json, add yourself to the array of contributors (if the array doesn't exist, create it):
{ "contributors": [ "Your Name <[email protected]> (http://your.website)" ] }
-
Open a pull request and reference the initial issue in the pull request message (e.g.: fixes #). Write a good description and title, so everybody will know what is fixed/improved.
-
If it makes sense, add screenshots, gifs, etc., so it is easier to see what is going on.
Your contributions will be reviewed before accepting them. You may get feedback about what should be fixed/changed in your modified code.