diff --git a/scripts/generateChangelog.js b/scripts/generateChangelog.js index 00d443b9b..4570410ef 100644 --- a/scripts/generateChangelog.js +++ b/scripts/generateChangelog.js @@ -100,7 +100,7 @@ for (const changelog of changelogs) { } else if (line === '# Changelog' || line === '### ⚠ BREAKING CHANGES' || !line) { continue; } else { - throw new Error(`Unmatched line: ${line}`); + changes['error'].push(`Unmatched line: ${line}`); } } }