Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 904 Bytes

CONTRIBUTING.md

File metadata and controls

40 lines (28 loc) · 904 Bytes

Contribution

Any contribution is welcome.

  • Create a pull request.
  • Report a bug.
  • Tell me about your desired features.
  • Buy Me A Coffee

Install

npm install
npm test

It is recommended to create a push hook:

cp ./resources/githooks/pre-push ./.git/hooks/pre-push

Content of .git/hooks/pre-push file:

#!/bin/sh
echo "pre-push hook:"
set -e -x
npm audit --production
npm rum compile
npx mocha ./out/test/Documentation.test.js ./out/test/ESLint.test.js

Publishing to market

If you think your changes worth of a release, add a new version entry to CHANGELOG.md file without a date. Then Travis will publish it automatically.

Checklist

  • Are the tests are running? (npm test)
  • Is the CHANGELOG.md was updated?