Skip to content

Commit 8d10df0

Browse files
feat(show_changelog): Put an -HR- between changelogs for upstream projects
1 parent 3ffa4b4 commit 8d10df0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

show_changelog.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,12 @@ function showDepChangelog(dependency) {
100100
shelljs.pushd(tmpdir);
101101
shelljs.config.silent = false;
102102
console.log(`\n`);
103+
console.log(`---`);
104+
console.log(`\n`);
103105
console.log(`### Updated \`${dependency}\` from ${from} to ${to}`);
106+
console.log(`\n`);
107+
console.log(`Changelog for \`${dependency}\`:`);
108+
console.log(`\n`);
104109
let depChangelog = _exec(`node ${scriptPath} --from ${from} --to ${to}`, true).stdout.trim();
105110
console.log(depChangelog.split(/[\r\n]/).slice(1).join('\n'));
106111
} finally {

0 commit comments

Comments
 (0)