0.0.5 • Published 6 months ago

esbuild-plugin-webpack-analyzer v0.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

esbuild-plugin-webpack-analyzer

npm license

A basic integration of https://github.com/webpack-contrib/webpack-bundle-analyzer into ESBuild.

Usage

import { BuildOptions } from 'esbuild';
import { pluginWebpackAnalyzer } from 'esbuild-plugin-webpack-analyzer';

const esbuildConfig: BuildOptions = {
  metafile: true, // required
  plugins: [
    pluginAnalyzer({
      port: 8888,
      host: '127.0.0.1',
      open: true,
    }),
  ],
};

Features

  • shows only stats sizes of modules
  • works both with splitting: true or splitting: false
0.0.5

6 months ago

0.0.4

6 months ago

0.0.3

6 months ago

0.0.2

6 months ago