mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 04:11:10 -05:00
Changing .changeset/changelog-config.js to js
This commit is contained in:
18
.changeset/changelog-config.js
Normal file
18
.changeset/changelog-config.js
Normal file
@@ -0,0 +1,18 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user