Skip to content

Commit

Permalink
Merge pull request #14844 from webpack/fix-14678
Browse files Browse the repository at this point in the history
fix regexp in DefaultStatsPrinterPlugin
  • Loading branch information
sokra committed Nov 29, 2021
2 parents a7bba26 + a8afd23 commit f1e9221
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/stats/DefaultStatsPrinterPlugin.js
Expand Up @@ -1160,7 +1160,7 @@ const AVAILABLE_FORMATS = {
},
{ regExp: /(\(module has no exports\))/g, format: red },
{ regExp: /\(possible exports: (.+)\)/g, format: green },
{ regExp: /\s*([^\s].* doesn't exist)/g, format: red },
{ regExp: /(?:^|\n)(.* doesn't exist)/g, format: red },
{ regExp: /('\w+' option has not been set)/g, format: red },
{
regExp: /(Emitted value instead of an instance of Error)/g,
Expand Down

0 comments on commit f1e9221

Please sign in to comment.