UNPKG

strip-debug-loader

Version:

Remove console, alert, and debugger statements from code processed by webpack

13 lines (12 loc) 201 B
module.exports = { entry: './src/index.js', output: { path: __dirname, filename: 'dist/index.js' }, module: { loaders: [ { test: /\.js$/, loader: 'strip-debug' } ] } };