I have tried adding UglifyJSPlugin to a webpack 4 project, in accordance with the webpack docs, and I'm still seeing dead code and even comments in my bundle which leads me to think that my uglify plugin config isn't being used.
The docs state that "in order to take advantage of tree shaking, you must...
- Use ES2015 module syntax (i.e. import and export). done
- Add a "sideEffects" entry to your project's package.json file. done .
- Include a minifier that supports dead code removal (e.g. the UglifyJSPlugin)." done
Still, the unused/unimported leftpad function and comments are being included in my bundle.
All of the config can be seen here. Based on the results I'm seeing, I suspect that this is related to the uglify settings in my webpack config.
To reproduce, pull the repo and run yarn build