Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 748 Bytes

CONTRIBUTING.md

File metadata and controls

49 lines (31 loc) · 748 Bytes

Contributing to Kongfig

We are very grateful for any contributions you can make to the project.

Submitting a Pull Request

Before submitting your request, we kindly ask you to:

  • Include tests related to your changes
  • Consider squashing your commits, so as to keep the history clean and succinct

Setup

To compile the kongfig you need babel-cli

npm install --global babel-cli

Install the package dependencies

npm install

Running tests

npm test

or even more conveniently you can run the test continuously on file changes.

npm test -- --watch

Compiling bin/kongfig

npm run build

or compile continuously on file changes.

npm run build -- --watch