Skip to content

Commit

Permalink
Merge pull request #14679 from webpack/fix-regexp
Browse files Browse the repository at this point in the history
fix regexp in DefaultStatsPrinterPlugin.js
  • Loading branch information
sokra committed Nov 8, 2021
2 parents 14dd4f9 + eeb8e89 commit 12e0285
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*(.+ doesn't exist)/g, format: red },
{ regExp: /\s*([^\s].* 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 12e0285

Please sign in to comment.