webpack-bundle-tracker
webpack-bundle-tracker copied to clipboard
Spits out some stats about webpack compilation process to a file
This addresses #69
When the compression plugin is told to remove original asset (for example for use with `nginx` `gzip_static` + `gunzip` options) the bundle tracker only saves the `.gz` version keys in...
It seems that setting the `path` option in the BundleTracker options no longer has an effect. I think the issue was introduced in [this commit](https://github.com/django-webpack/webpack-bundle-tracker/commit/51dfab5759c2b72d68cd5728b56c64e11e992f41). Regardless of what the `path`...
For example i have ```json "chunks":{ "home":[ "vendors-node_modules_mini-css-extract-plugin_dist_hmr_hotModuleReplacement_js-node_modules_we-a0114e-f096b527166df6583ac8.bundle.js", "assets_custom-libs_semantic_parts_container_css-assets_custom-libs_semantic_parts_grid_css-as-b1ee4e.css", "home.css", "home-f096b527166df6583ac8.bundle.js" ] } ``` I need ```json "chunks":{ "home":[ "e4e24724b5fcfe64adb9.woff2", "vendors-node_modules_mini-css-extract-plugin_dist_hmr_hotModuleReplacement_js-node_modules_we-a0114e-f096b527166df6583ac8.bundle.js", "assets_custom-libs_semantic_parts_container_css-assets_custom-libs_semantic_parts_grid_css-as-b1ee4e.css", "home.css", "home-f096b527166df6583ac8.bundle.js" ] } ``` Is there a...
I've found that the ordering of keys is not guaranteed when outputting the stats file, and this doesn't work well with storing the JSON file in a version control system...
Would it be possible to allow different formatting options for the `startTime` and `endTime` values? I find myself needing to check them while experimenting with webpack settings but unix timestamps...
When using the [deletefilesafterupload](https://www.npmjs.com/package/@sentry/webpack-plugin#option-sourcemaps-deletefilesafterupload) from @sentry/webpack-plugin with webpack-bundle-tracker, webpack throws an error of `Error: ENOENT: no such file or directory, open 'path/to/file.map'` I assume this has to do with how...
Hey, I've turned on `integrity` and experienced errors so far with: - using `webpack-dev-server` that only stores the files in-memory since they will get rebuilt upon change - sourcemap files...