charlike
Version:
Small, fast, simple and streaming project scaffolder for myself, but not only. Supports hundreds of template engines through the @JSTransformers API or if you want custom `render` function passed through options
46 lines (39 loc) • 1.08 kB
JavaScript
;
var Q = require('q');
var readFile = Q.denodeify(require('fs').readFile);
var resolve = require('path').resolve;
function presetOpts(cb) {
var parserOpts = {
headerPattern: /^(\w*)\: (.*?)(?:\((.*)\))?$/,
headerCorrespondence: [
'tag',
'message'
]
};
var writerOpts = {
transform: function(commit) {
if (!commit.tag || typeof commit.tag !== 'string') {
return;
}
return commit;
},
groupBy: 'tag',
commitGroupsSort: 'title',
commitsSort: ['tag', 'message']
};
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(function(template, header, commit) {
writerOpts.mainTemplate = template;
writerOpts.headerPartial = header;
writerOpts.commitPartial = commit;
cb(null, {
parserOpts: parserOpts,
writerOpts: writerOpts
});
});
}
module.exports = presetOpts;