Skip to content

Commit

Permalink
Fix type error with changelog hook
Browse files Browse the repository at this point in the history
  • Loading branch information
zephraph committed Jul 6, 2019
1 parent 1957ad8 commit bbf2112
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/utils/make-hooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const makeLogParseHooks = (): ILogParseHooks => ({
});

export const makeChangelogHooks = (): IChangelogHooks => ({
renderChangelogLine: new AsyncSeriesBailHook(['lineData']),
renderChangelogLine: new AsyncSeriesWaterfallHook(['lineData']),
renderChangelogTitle: new AsyncSeriesBailHook(['commits', 'lineRender']),
renderChangelogAuthor: new AsyncSeriesBailHook([
'author',
Expand Down

0 comments on commit bbf2112

Please sign in to comment.