mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-21 21:25:11 +00:00
chore: don't list dep updates in auto-changelog
This commit is contained in:
parent
0518cdbff1
commit
8234bc18d7
@ -9,7 +9,9 @@ async function main () {
|
||||
const config = await loadChangelogConfig(process.cwd(), {
|
||||
})
|
||||
|
||||
const commits = await getLatestCommits()
|
||||
const commits = await getLatestCommits().then(commits => commits.filter(
|
||||
c => config.types[c.type] && !(c.type === 'chore' && c.scope === 'deps' && !c.isBreaking)
|
||||
))
|
||||
const bumpType = await determineBumpType()
|
||||
|
||||
const newVersion = inc(workspace.find('nuxt').data.version, bumpType || 'patch')
|
||||
|
Loading…
Reference in New Issue
Block a user