coraline
This small cli makes it easier to handle conventional git commit messages.
Currently there are two preinstalled commit conventions:
- karma
- atom
- angular
Install
npm i coraline -g
How to use?
Just type cl
or coraline
in your terminal and follow the first configuration.
For help, just type cli --help
Usage $ cl --reset $ cl --default $ cl --readme $ cl --list $ cl --use Options --help --reset, -r Reset configuration --default, -d Use your default style
.coraline.js
Define a custom commit style for every repository with a simple
dotfile called .coraline.js
or .coraline
questions and template properties are not optional. The questions array includes one or many easy configurable inquirer objects. (https://www.npmjs.com/package/inquirer)
With template you define the commit message format.
For example: <title>
will be replaced with the value of name: 'title'
.
The readme object contains a small explanation of how your defined convention works.
moduleexports = custom: questions: type: 'input' name: 'title' message: 'Title' { return titlelength > 0; } type: 'editor' // opens your favorite cli editor name: 'message' message: 'Message' template: `<title>: <message>` readme: `` custom2: questions: type: 'input' name: 'title' message: 'Title' template: `<title>` readme: ``