esbuild-visualizer
esbuild-visualizer copied to clipboard
Create chart of dependencies in your bundle
fixes btd/rollup-plugin-visualizer#179 the output looks like [stats.sunburst.treemap.html.gz](https://github.com/btd/esbuild-visualizer/files/11991056/stats.sunburst.treemap.html.gz)
Example command, to exclude .ttf files from analyze: `esbuild-visualizer --open true --metadata ./dist/stats.json --exclude *.ttf --filename ./dist/stats.html` Output: ```sh Options: --version Show version number [boolean] --filename Output file name [string]...
- to have multiple visualization(sunburst, treemap, network in one build) as https://esbuild.github.io/analyze/ - noz just name of the file with diagram to generate, but automatically open browser like source-map-explorer, webpack-bundle-analyzer
According to the readme, this should work: ``` esbuild-visualizer --metadata ./meta.json --exclude *.png ``` But it does not, exclude is no longer a valid options. 