diff --git a/README.md b/README.md index 2d60126..d06266c 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ The following example shows how to add problem matchers to your project: } ``` -👉 In order for **\$ts-webpack-watch**, **\$ts-checker-webpack-watch**, **\$ts-checker-eslint-webpack-watch**, and **\$tslint-webpack-watch** to work properly, 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 +👉 In order for **\$ts-webpack-watch**, **\$ts-checker-webpack-watch**, **\$ts-checker-eslint-webpack-watch**, and **\$tslint-webpack-watch** to work properly in webpack version 4, 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. (This is not needed in webpack version 5 and webpack version 5 does not support the --info-verbosity command line option.) 👉 In order for **\$ts-checker5-webpack**, **\$ts-checker5-webpack-watch**, **\$ts-checker5-eslint-webpack**, and **\$ts-checker5-eslint-webpack-watch** to work properly, you must set `formatter: 'basic'` in your [fork-ts-checker-webpack-plugin options](https://github.com/TypeStrong/fork-ts-checker-webpack-plugin/tree/alpha#options) and 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 diff --git a/package.json b/package.json index 9739f07..23fc0f3 100644 --- a/package.json +++ b/package.json @@ -67,7 +67,7 @@ "regexp": "Compiling.*?|Compilation .*?starting" }, "endsPattern": { - "regexp": "Compiled .*?successfully|Compilation .*?finished" + "regexp": "Compiled .*?successfully|Compilation .*?finished|webpack .* compiled with.* in " } } }, @@ -106,7 +106,7 @@ "regexp": "Compiling.*?|Compilation .*?starting" }, "endsPattern": { - "regexp": "Compiled .*?successfully|Compilation .*?finished" + "regexp": "Compiled .*?successfully|Compilation .*?finished|webpack .* compiled with.* in " } } }, @@ -145,7 +145,7 @@ "regexp": "Compiling.*?|Compilation .*?starting" }, "endsPattern": { - "regexp": "Compiled .*?successfully|Compilation .*?finished" + "regexp": "Compiled .*?successfully|Compilation .*?finished|webpack .* compiled with.* in " } } },