1.2.2 • Published 5 years ago

rollup-plugin-strip v1.2.2

Weekly downloads
712
License
MIT
Repository
github
Last release
5 years ago

rollup-plugin-strip

Remove debugger statements and functions like assert.equal and console.log from your code.

Installation

npm install --save-dev rollup-plugin-strip

Usage

// rollup.config.js
import strip from 'rollup-plugin-strip';

export default {
  input: 'src/index.js',
  output: [
    {
      format: 'cjs',
      file: '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
    })
  ]
};

License

MIT