Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/generate-release-notes.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const main = async () => {
`\`npm install ${packageName}@${version}\``,
].join("\n");

console.log(body);
// console.log(body);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Commenting out this console.log(body) breaks the script's functionality. The release workflow (.github/workflows/release.yml:81) captures stdout via execSync(...).toString() to get the release notes. Without this output, releases will have empty bodies.

Suggested change
// console.log(body);
console.log(body);

};

main().catch((error) => {
Expand Down