The prepublish
hook will ensure dist files are created before publishing. This
way you don't need to commit them in your repository.
# Bump the version first
# It'll also commit it and create a tag
npm version patch -m 'MESSAGE'
# Push the bumped package and tags
git push --follow-tags
# Ship it 🚀
npm publish