webpack-remove-debug
v0.1.0
Published
Webpack loader to remove debug from your production code.
Downloads
2,529
Readme
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'
}
]
}
};