Skip to content

Commit b865f1d

Browse files
fix: always pass compilation to issues hook (#443)
1 parent e812f18 commit b865f1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hooks/tapDoneToAsyncGetIssues.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function tapDoneToAsyncGetIssues(
5454
issues = issues.filter(configuration.issue.predicate);
5555

5656
// modify list of issues in the plugin hooks
57-
issues = hooks.issues.call(issues);
57+
issues = hooks.issues.call(issues, stats.compilation);
5858

5959
const formatter = createWebpackFormatter(configuration.formatter, compiler.context);
6060

0 commit comments

Comments
 (0)