Write logs based on conventional commits and templates.
85
A tool that generates changelogs from conventional commit data with customizable sorting behavior for commits within each group.
@generates
/**
* Generates a changelog string from an array of commits with custom sorting.
*
* @param {Array} commits - Array of commit objects with conventional commit structure
* @param {Object} options - Configuration options including sorting behavior
* @returns {Promise<string>} The generated changelog string
*/
async function generateChangelog(commits, options) {
// IMPLEMENTATION HERE
}
module.exports = { generateChangelog };Provides changelog generation and commit sorting capabilities.
Install with Tessl CLI
npx tessl i tessl/npm-conventional-changelog-writerevals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10