Remove debugger
statements and functions like assert.equal
and console.log
from your code.
npm install --save-dev rollup-plugin-strip
// rollup.config.js
import strip from 'rollup-plugin-strip';
export default {
entry: 'src/index.js',
dest: 'dist/my-lib.js',
plugins: [
strip({
// set this to `false` if you don't want to
// remove debugger statements
debugger: true,
// defaults to `[ 'console.*', 'assert.*' ]`
functions: [ 'console.log', 'assert.*', 'debug', 'alert' ],
// set this to `false` if you're not using sourcemaps –
// defaults to `true`
sourceMap: true
})
]
};
MIT