1.2.4 • Published 3 years ago
commit-manager v1.2.4
This project is an adaptation of miduco, created by midudev.
Commit Manager
Node CLI to write better commits messages.
Installation
You can exec commit manager by using
npx commit-managerOr you can install commit manager as a dev dependency in your project.
npm
npm install commit-manager -Dpnpm
pnpm add commit-manager -Dyarn
yarn add commit-manager -DThen create the script that execute commit-manager.
"scripts": {
"commit": "commit-manager"
}Usage/Examples
Commit manager has these configuration options:
- --emoji: use emojis in the commits. Default true
- --title: commit title length. Default 62 characters
- --wrap: body message text wrap. Default 72 characters
npx commit-manager --no-emoji --title 50 --wrap 50"scripts": {
"commit": "commit-manager --no-emoji"
}