npm install
npm start # demonstration
This repository enforces the user to enter a properly formatted commit message
via commitizen. You do not have to do anything different than git commit
when
commiting changes.
Once you have finished the commitizen dialog, you can easily push changes with
git push
.
This package uses standard-version and commitizen for standardizing commit messages, releasing tags and updating the changelog.
When you're ready to release, execute the following commands in the given order:
git checkout master
git pull origin master
npm run release
(ornpx standard-version
)git push --follow-tags origin master
Now you are ready to publish the package with: npm publish