0.1.0 • Published 7 years ago

webpack-remove-debug v0.1.0

Weekly downloads
1,127
License
-
Repository
github
Last release
7 years ago

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'
			}
        ]
    }
};