-
-
Notifications
You must be signed in to change notification settings - Fork 246
Don't print info when running webpack --json #101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
We had this same issue in ts-loader for ages. In the end we bowed to peer pressure and dialed down our logging to not emit by default. Before that we had a |
yep, same issue here. Are you all accepting PRs? |
I just found the |
Got the same problem, this works for me: new ForkTsCheckerWebpackPlugin({tsconfig: 'tsconfig.json', silent: process.argv.includes('--json')}), |
@geirsagberg , @meyer , @Akuukis |
Version: 0.3.0
Running
webpack --profile --json
currently produces the following whenfork-ts-checker-webpack-plugin
is included:The first two lines cause e.g.
webpack-bundle-analyzer
to fail.When webpack is ran with
--json
, nothing should be written to console.The text was updated successfully, but these errors were encountered: