0.0.5 • Published 2 years ago

esbuild-plugin-webpack-analyzer v0.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years 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

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago