Using Webpack v5 or later: In order for the watch matchers to work properly in Webpack v4, you must add --info-verbosity verbose to your webpack watch command e.g. webpack --watch --info-verbosity verbose as this instructs webpack to output lifecycle event messages for each re-compile.
However, when I add this flag, I get an error saying it doesn't exist:
❯ npx webpack --watch --info-verbosity verbose
[webpack-cli] Error: Unknown option '--info-verbosity'
[webpack-cli] Run 'webpack --help' to see available commands and options
It says in the README:
However, when I add this flag, I get an error saying it doesn't exist:
I have:
Are any options needed to get the problem matcher to work with the new webpack-cli?