Lines Matching defs:writerOpts
50 function writerOpts(config) {
134 const writerOpts = ccWriterOpts(config)
135 .then(writerOpts => {
136 const ccWriterOptsTransform = writerOpts.transform;
163 writerOpts.mainTemplate = readFileSync(resolve(__dirname, "./templates/template.hbs"), "utf-8");
164 writerOpts.headerPartial = readFileSync(resolve(__dirname, "./templates/header.hbs"), "utf-8");
165 writerOpts.commitPartial = readFileSync(resolve(__dirname, "./templates/commit.hbs"), "utf-8");
166 writerOpts.footerPartial = readFileSync(resolve(__dirname, "./templates/footer.hbs"), "utf-8");
168 writerOpts.transform = function (commit, context) {
196 return writerOpts;
199 return writerOpts;
209 writerOpts(config)
214 writerOpts
222 writerOpts
229 writerOpts