-
Notifications
You must be signed in to change notification settings - Fork 8
Custom Emojis
Leonardo Ascione edited this page Feb 26, 2019
·
3 revisions
This package allows for custom emojis, or customizing behaviour for provided ones, using emojis
config property as introduced in the readme.
The emojis
key must be an object, where each key is the type (added, edited or disabled), and value is the emoji type configuration.
Each type maps to a conventional-changelog "type", i.e. fix
, feat
,Β ci
.
This project uses
cosmiconfig
, so you can put your emoji customization in thefavolosoEmoji
key in your package.json, or just create a.favolosoEmoji.json
,favolosoEmoji.config.js
, etc. file in your project directory.
{
"favolosoEmoji": {
"emojis": {
"fix": {
"emoji": "π",
"heading": "π Fixes"
},
"chore": false,
"change": {
"emoji": "πΌ",
"inChangelog": true,
"heading": "πΌ Changes",
"bump": "patch",
"aliases": ["π"],
"typeAliases": ["changes"]
}
}
}
}