Contribution Guidelines

October 7, 2020 ยท View on GitHub

The new features and bug fixes are merged into develop branch. The master branch contains the latest stable release.

Please, follow the following steps to contribute

  • Clone the repository.
  • Checkout develop branch.
  • Create feature or bug fixing branch using git flow
  • Install dependencies.
  • Add your new features or fixes.
  • Build the project.
  • Create a working example file.
  • Send PR.
$ git clone https://github.com/chartshq/react-muze.git
$ cd react-muze
$ git checkout develop
$ git flow init
$ git flow feature start <your-feature-branch-name>
$ yarn install
$ yarn build
$ cd dist && yarn link

Create a working example for the fixed issue in /examples directory

$ yarn install
$ cd examples
$ yarn link @chartshq/react-muze
$ yarn start