Skip to content

Commit

Permalink
chore: don't list dep updates in auto-changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Apr 20, 2023
1 parent 0518cdb commit 8234bc1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/update-changelog.ts
Expand Up @@ -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')
Expand Down

0 comments on commit 8234bc1

Please sign in to comment.