The chunkHash of all the output js files changes on every single build without changing my code.
Also, all my bundles and chunks are larger in size with happypack. The size of the output chunks also keeps changing from build to build with 1-3 kb difference in size for 200 kb js output. One thing that I noticed is that the lodash is not undergoing tree shaking with happypack which it does if I don't use happypack. It looks like babel-plugin-lodash doesn't have any effect with happypack.
I use this plugin with ts-loader and fork-ts-checker-webpack-plugin. Without happypack, everything works as expected.
The chunkHash of all the output js files changes on every single build without changing my code.
Also, all my bundles and chunks are larger in size with happypack. The size of the output chunks also keeps changing from build to build with 1-3 kb difference in size for 200 kb js output. One thing that I noticed is that the
lodash
is not undergoing tree shaking with happypack which it does if I don't use happypack. It looks likebabel-plugin-lodash
doesn't have any effect with happypack.I use this plugin with
ts-loader
andfork-ts-checker-webpack-plugin
. Without happypack, everything works as expected.My
typescript
loader:My
javascript
loder:Here are my versions: "webpack": "4.6.0", "webpack-cli": "2.0.15", "ts-loader": "4.2.0", "typescript": "2.8.3", "happypack": "5.0.0"