Skip to content
This repository has been archived by the owner on Dec 12, 2022. It is now read-only.

Latest commit

 

History

History
44 lines (29 loc) · 1.39 KB

CONTRIBUTING.md

File metadata and controls

44 lines (29 loc) · 1.39 KB

How to contribute

Any help and contribution is welcome, feel free to submit issues and/or contribute to the project.

Prerequisites

  • Fork the repository and clone your fork.
  • Create a branch and name it explicitly, like so: feature/name-of-the-feature
  • Install dependencies: npm install.

Development workflow

In most cases you'll start from dev branch and merge back to dev branch. Exceptions can be made for hotfixes but need to stay exceptionals.

To build your changes run:

npm run build

Or build in development mode:

npm run dev

Run linters:

npm run lint

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

Other notes

  • If you have commit access to repository and want to make big change or not sure about something, make a new branch and open pull request.
  • Use Conventional Commits, like so: feat(scope): topic (this repository is commitizen friendly, we recommend you use it to avoid any trouble).
  • Don’t commit generated files.
  • Don’t change version number and 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.