Skip to content

Latest commit

 

History

History
59 lines (36 loc) · 2.44 KB

CONTRIBUTING.md

File metadata and controls

59 lines (36 loc) · 2.44 KB

How to contribute

We love pull requests. And following these guidelines will make your pull request easier to merge.

If you want to contribute but don’t know what to do, take a look at these two labels: help wanted and good first issue.

Use GitHub interface for simple documentation changes, otherwise follow the steps below.

Prerequisites

Development workflow

Start from the develop branch.

To build you changes run:

npm run build

Run linters and tests:

npm test

Or run tests in watch mode:

npm test --watch

Don’t forget to add tests and update documentation for your changes. Documentation can be archived by using JSDoc.

Please update the npm lock file (package-lock.json) if you add or update dependencies.

For commit messages use Conventional Commits, like so: feat(scope): topic

Pull request targets

For the most common pull requests such as bug fixes, feature additions, documentation changes, etc., target the develop branch.

For major changes that markedly transform the existing API or significantly alter the behavior of some functionality ensure that the corresponding commits contain appropriate Conventional Commits breaking change notations and as the pull request target select the beta branch.

Other notes

  • If you have commit access to the repository and want to make a big change or are unsure about something, make a new branch and open a pull request.
  • We’re using Prettier to format code, so don’t worry much about code formatting.
  • Don’t commit generated files, like minified JavaScript.
  • Don’t change the version number or changelog.

Need help?

If you want to contribute but have any questions, concerns or doubts, feel free to ping maintainers. Ideally create a pull request with WIP (Work in progress) in its title and ask questions in the pull request description.