Prettier backfill

This commit is contained in:
Matt Rubens
2025-01-17 14:11:28 -05:00
parent 3bcb4ff8c5
commit 60a0a824b9
174 changed files with 15715 additions and 15428 deletions

View File

@@ -1,20 +1,20 @@
// Half-works to simplify the format but needs 'overwrite_changeset_changelog.py' in GHA to finish formatting
const getReleaseLine = async (changeset) => {
const [firstLine] = changeset.summary
.split('\n')
.map(l => l.trim())
.filter(Boolean);
return `- ${firstLine}`;
};
const [firstLine] = changeset.summary
.split("\n")
.map((l) => l.trim())
.filter(Boolean)
return `- ${firstLine}`
}
const getDependencyReleaseLine = async () => {
return '';
};
return ""
}
const changelogFunctions = {
getReleaseLine,
getDependencyReleaseLine,
};
getReleaseLine,
getDependencyReleaseLine,
}
module.exports = changelogFunctions;
module.exports = changelogFunctions