README
sn-commitizen
This package sets the common commitizen configuration for Skills Network
Installing this package in your repo
First install the npm package:
npm install sn-commitizen --save-dev
For people running NPM <5.2 you will need to add the following to the scripts
section of your package.json
"scripts": {
...
"commit": "sn-commitizen"
}
Making a commit
# Make your code changes
# Stage files for commit via `git add`
# If you're running NPM 5.2+ you can do
npx sn-commitizen
# Otherwise run
npm run commit