Skip to content

Commit

Permalink
chore: prepare for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot authored and vyfor committed Jan 2, 2025
1 parent bc45219 commit fd384c4
Show file tree
Hide file tree
Showing 2 changed files with 483 additions and 3 deletions.
26 changes: 23 additions & 3 deletions .releaserc.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ module.exports = {
"preset": "angular",
"writerOpts": {
"headerPartial": "# {{#with context}}{{#if isServerUpdate}}⚙️ {{/if}}{{/with}}[{{currentTag}}]{{#if title}} {{title}}{{/if}}\n\n{{#if date}}_{{date}}_{{/if}}",
"commitPartial": "* {{#if scope}}**{{scope}}**: {{/if}}{{subject}} ([view commit]({{@root.repository}}/commit/{{hash}}))\n",
"transform": function (commit, context) {
if (!context.context) context.context = {};

Expand All @@ -25,8 +24,29 @@ module.exports = {
}

return {};
}
}
},
"commitsSort": ["scope", "message"],
"commitPartial": "* {{this.message}}\n"
},
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{ type: 'feat', section: 'Features' },
{ type: 'feature', section: 'Features' },
{ type: 'fix', section: 'Bug Fixes' },
{ type: 'perf', section: 'Performance Improvements' },
{ type: 'revert', section: 'Reverts' },
{ type: 'docs', section: 'Documentation', hidden: true },
{ type: 'style', section: 'Styles', hidden: false },
{ type: 'chore', section: 'Miscellaneous Chores', hidden: true },
{ type: 'refactor', section: 'Code Refactoring', hidden: false },
{ type: 'test', section: 'Tests', hidden: true },
{ type: 'build', section: 'Build System', hidden: true },
{ type: 'ci', section: 'Continuous Integration', hidden: true }
]
},
"linkCompare": false,
"linkReferences": false
}
],
"@semantic-release/changelog",
Expand Down
Loading

0 comments on commit fd384c4

Please sign in to comment.