webpack-debug-plugin

Inject useful debug info to each entry js globally

Usage no npm install needed!

<script type="module">
  import webpackDebugPlugin from 'https://cdn.skypack.dev/webpack-debug-plugin';
</script>

README

webpack-debug-plugin

Inject useful debug info to each entry js globally

Highly inspired by BannerPlugin

Usage

npm install --save-dev webpack-debug-plugin

# For Webpack 3
npm install --save-dev webpack-debug-plugin@0.x
const DebugPlugin = require('webpack-debug-plugin');
// webpack.config.js
{
  plugins: [
    new DebugPlugin(options)
  ]
}

Options

{
  template: Function,
  multiple: boolean,
  variableName: string,
  test: string | RegExp | Array,
  include: string | RegExp | Array,
  exclude: string | RegExp | Array,
}

License

MIT