webpack-remove-debug

v0.1.0
Webpack loader to remove debug from your production code.
webpack debug strip remove

Webpack Remove Debug

A very simple Webpack loader to remove debug from your code.

You might want to include debug in your development code, but remove all traces of it from your production code.

This is similar to strip-loader, but requires no parameters and only works for debug, and with very specific conditions.

It removes function calls:

debug( 'Some debug line', stuff );

It also removes the require (no support for import):

const debug = require( 'debug' )( 'yourapp:morestuff' );

Install

npm install --save-dev webpack-remove-debug

Configuration

In your Webpack 1 config:

{
    module: {
        loaders: [
            {
                test: /\.js$/,
                loader: 'webpack-remove-debug'
            }
        ]
    }
};

In your Webpack 2 config:

{
    module: {
        rules: [
            {
                test: /\.js$/,
                loader: 'webpack-remove-debug'
            }
        ]
    }
};
npm i webpack-remove-debug

Metadata

  • Unknown
  • Whatever
  • John Godley
  • released 12/2/2016

Downloads

Maintainers