Files
Roo-Code/.changeset/changelog-config.js
2024-12-16 15:56:06 -08:00

18 lines
361 B
JavaScript

const getReleaseLine = async (changeset) => {
const [firstLine] = changeset.summary
.split('\n')
.map(l => l.trim())
.filter(Boolean);
return `- ${firstLine}`;
};
const getDependencyReleaseLine = async () => {
return '';
};
const changelogFunctions = {
getReleaseLine,
getDependencyReleaseLine,
};
module.exports = changelogFunctions;