Skip to content

Latest commit

 

History

History
57 lines (38 loc) · 1.16 KB

CONTRIBUTING.md

File metadata and controls

57 lines (38 loc) · 1.16 KB

Contributing

To contribute to this repository fork it and send pull request.

Project structure

  • lib/ - source code written on TypeScript
  • dist/ - compiled source code and must not be changed manually
  • tests/unit/ - unit tests
  • tests/e2e/ - end-to-end tests
  • index.js - entry point of the driver

Run the project

Hot compiling of TypeScript

npm run watch

Build the project

npm run build

Tests:

npm run test

npm run e2e

To run develop hive instance see: .docker

Commit messages

Please follow the Angular commit style.

To make it easy, just run the command

npm run commit

Pull Request Process

  1. Update the README.md or similar documentation with details of changes you wish to make, if applicable.
  2. Add any appropriate tests.
  3. Make your code or other changes.
  4. Review guidelines such as How to write the perfect pull request, thanks!