Skip to content

A tool for generate release note with `git log`

License

Notifications You must be signed in to change notification settings

LitoMore/releaz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

releaz

A tool for generate release note based on git log command

Install

npm i releaz

Usage

import releaz from 'releaz';
import chalk from 'chalk';

const result = await releaz({
	range: 'fa475e0..HEAD',
	format: `- ${chalk.cyan('%h')} ${chalk.blue('%an')} %s`,
});

console.log(result);

API

releaz(options)

Options

Here is git log documentation.

Related

License

MIT © LitoMore