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 3ffa4b4 commit 8d10df0Copy full SHA for 8d10df0
show_changelog.js
@@ -100,7 +100,12 @@ function showDepChangelog(dependency) {
100
shelljs.pushd(tmpdir);
101
shelljs.config.silent = false;
102
console.log(`\n`);
103
+ console.log(`---`);
104
+ console.log(`\n`);
105
console.log(`### Updated \`${dependency}\` from ${from} to ${to}`);
106
107
+ console.log(`Changelog for \`${dependency}\`:`);
108
109
let depChangelog = _exec(`node ${scriptPath} --from ${from} --to ${to}`, true).stdout.trim();
110
console.log(depChangelog.split(/[\r\n]/).slice(1).join('\n'));
111
} finally {
0 commit comments