Any contribution is welcome.
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
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.
- Are the tests are running? (
npm test
) - Is the
CHANGELOG.md
was updated?