Before submitting a pull request, please make sure the following is done:
- Fork the repository and create your branch from master.
- Run
npm run build
. This will:- Run
npm install
in the repository root. - Ensure the test suite passes with
npm test
. - Format your code with prettier and eslint using
npm run lint
.
- Run
- If you’ve fixed a bug or added code that should be tested, add tests!
Tip: npm run mocha -- --grep "test name"
is helpful in development.