Closed vvo closed 8 years ago
Hello! Nice move to sync API. I had to dig a bit to understand we had to move from:
let dmdStream = dmd({ template: ..., helper: ['./scripts/helpers'] }); dmdStream.pipe(fs.createWriteStream('file.md'))); dmdStream.end(JSON.stringify(data));
to:
const fileContent = dmd(data, { template: ..., helper: ['./scripts/helpers'] }); const filePath = 'file.md'; fs.writeFile(filePath, fileContent);
Maybe worth adding to the readme. As a general rule, we try to have CHANGELOG.md, nice and simple.
good morning! Yes, i will put some release notes on the repo, thanks!
done, thanks.
Thx, is the https://github.com/jsdoc2md/dmd#synopsis up to date?
Hello! Nice move to sync API. I had to dig a bit to understand we had to move from:
to:
Maybe worth adding to the readme. As a general rule, we try to have CHANGELOG.md, nice and simple.