mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-16 07:13:46 -05:00
chore(package): re-init package with commitizen and standard-release
This commit is contained in:
39
node_modules/conventional-changelog-codemirror/writer-opts.js
generated
vendored
Normal file
39
node_modules/conventional-changelog-codemirror/writer-opts.js
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
'use strict'
|
||||
|
||||
const Q = require(`q`)
|
||||
const readFile = Q.denodeify(require(`fs`).readFile)
|
||||
const resolve = require(`path`).resolve
|
||||
|
||||
module.exports = Q.all([
|
||||
readFile(resolve(__dirname, './templates/template.hbs'), 'utf-8'),
|
||||
readFile(resolve(__dirname, './templates/header.hbs'), 'utf-8'),
|
||||
readFile(resolve(__dirname, './templates/commit.hbs'), 'utf-8')
|
||||
])
|
||||
.spread((template, header, commit) => {
|
||||
const writerOpts = getWriterOpts()
|
||||
|
||||
writerOpts.mainTemplate = template
|
||||
writerOpts.headerPartial = header
|
||||
writerOpts.commitPartial = commit
|
||||
|
||||
return writerOpts
|
||||
})
|
||||
|
||||
function getWriterOpts () {
|
||||
return {
|
||||
transform: (commit) => {
|
||||
if (!commit.language) {
|
||||
return
|
||||
}
|
||||
|
||||
if (typeof commit.hash === `string`) {
|
||||
commit.hash = commit.hash.substring(0, 7)
|
||||
}
|
||||
|
||||
return commit
|
||||
},
|
||||
groupBy: `language`,
|
||||
commitGroupsSort: `title`,
|
||||
commitsSort: [`language`, `type`, `message`]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user