mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
chore: allow changelogs with breaking changes
This commit is contained in:
parent
77685e43e4
commit
e115871892
@ -11,7 +11,7 @@ async function main () {
|
|||||||
const config = await loadChangelogConfig(process.cwd(), {})
|
const config = await loadChangelogConfig(process.cwd(), {})
|
||||||
|
|
||||||
const commits = await getLatestCommits().then(commits => commits.filter(
|
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'
|
const bumpType = await determineBumpType() || 'patch'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user