Skip to content

Commit

Permalink
chore: beautify release changelogs (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
lytovka committed Apr 17, 2023
1 parent a82c12b commit de91b74
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .releaserc.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,60 +37,61 @@ module.exports = {
{
preset: "conventionalcommits",
presetConfig: {
header: "# Changelog\n\n",
types: [
{
type: "refactor",
section: "Build",
section: "## Build πŸ› οΈ",
hidden: false,
},
{
type: "docs",
section: "Docs",
section: "## Docs πŸ“š",
hidden: false,
},
{
type: "refactor",
section: "Refactor",
section: "## Refactor πŸ‘·",
hidden: false,
},
{
type: "ci",
section: "CI",
section: "## CI πŸ› οΈ",
hidden: false,
},
{
type: "style",
section: "Style",
section: "## Style πŸ’…",
hidden: false,
},
{
type: "test",
section: "Tests",
section: "## Tests πŸ§ͺ",
hidden: false,
},
{
type: "chore",
section: "Chores",
section: "## Chores 🧹",
hidden: false,
},
{
type: "perf",
section: "Performance",
section: "## Performance πŸš€",
hidden: false,
},
{
type: "fix",
section: "Fixes",
section: "## Fixes πŸ›",
hidden: false,
},
{
type: "feat",
section: "Features",
section: "## Features ✨",
hidden: false,
},
{
type: "revert",
section: "Revert",
section: "## Revert 🚧",
hidden: false,
},
],
Expand Down

0 comments on commit de91b74

Please sign in to comment.