SkeLLLa/node-object-hash

View on GitHub
ci/release-notes.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = [
  '@semantic-release/release-notes-generator',
  {
    preset: 'conventionalcommits',
    writerOpts: {
      groupBy: 'type',
      commitGroupsSort: ['feat', 'fix', 'perf', 'docs', 'revert', 'refactor', 'chore'],
      commitsSort: 'header',
    },
    presetConfig: {
      types: [
        { type: 'build', section: '๐ŸฆŠ CI/CD', hidden: true },
        { type: 'chore', section: '๐Ÿงพ Other', hidden: false },
        { type: 'ci', section: '๐ŸฆŠ CI/CD', hidden: true },
        { type: 'docs', section: '๐Ÿ“” Docs', hidden: false },
        { type: 'example', section: '๐Ÿ“ Examples', hidden: false },
        { type: 'feat', section: '๐Ÿš€ Features', hidden: false },
        { type: 'fix', section: '๐Ÿ›  Fixes', hidden: false },
        { type: 'perf', section: 'โฉ Performance', hidden: false },
        { type: 'refactor', section: 'โœ‚๏ธ Refactor', hidden: false },
        { type: 'revert', section: '๐Ÿ™…โ€๏ธ Reverts', hidden: false },
        { type: 'style', section: '๐Ÿ’ˆ Style', hidden: true },
        { type: 'test', section: '๐Ÿงช Tests', hidden: true },
      ],
    },
  },
];