Skip to content

Commit

Permalink
Update src/commands/default.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 authored Sep 19, 2024
1 parent 63efc7c commit 26dcc20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default async function defaultMain(args: Argv) {

// Parse commits as conventional commits
const commits = parseCommits(rawCommits, config)
.map((c) => ({ ...c, type: c.type.toLowerCase() }))
.map((c) => ({ ...c, type: c.type.toLowerCase() /* #198 */ }))
.filter(
(c) =>
config.types[c.type] &&
Expand Down

0 comments on commit 26dcc20

Please sign in to comment.