We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21b8b0b commit 58cc1ceCopy full SHA for 58cc1ce
src/index.ts
@@ -175,6 +175,7 @@ async function getDependencyReleaseLine(
175
// Function to get the credits section
176
function getCreditsSection(): string {
177
const authors = Array.from(allAuthors).sort();
178
+ console.log(`[Debug] Authors: ${authors}`);
179
const authorLinks = authors.map((author) => `@${author}`);
180
181
if (authorLinks.length === 0) {
@@ -220,6 +221,7 @@ const wrappedGetDependencyReleaseLine: ChangelogFunctions["getDependencyReleaseL
220
221
opts
222
);
223
224
+ console.log(`[Debug] Authors: ${allAuthors}`);
225
// Add credits section if we have authors
226
if (allAuthors.size > 0) {
227
const credits = getCreditsSection();
0 commit comments