mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-21 21:25:11 +00:00
chore: allow changelogs with breaking changes
This commit is contained in:
parent
4d063f1f85
commit
73fd46a4d3
@ -11,7 +11,7 @@ async function main () {
|
||||
const config = await loadChangelogConfig(process.cwd(), {})
|
||||
|
||||
const commits = await getLatestCommits().then(commits => commits.filter(
|
||||
c => config.types[c.type] && !(c.type === 'chore' && c.scope === 'deps' && !c.isBreaking),
|
||||
c => config.types[c.type] && !(c.type === 'chore' && c.scope === 'deps'),
|
||||
))
|
||||
const bumpType = await determineBumpType() || 'patch'
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user