Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

rollup-plugin-strip

rollup3.7kMITdeprecated1.2.2

This package has been deprecated and is no longer maintained. Please use @rollup/plugin-strip

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

rollup, modules, debugging, javascript

readme

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

changelog

rollup-plugin-strip changelog

1.2.2

  • Fix object destructuring assignments with default values (#17)
  • update rollup-pluginutils (#22)

1.2.1

  • Update dependencies

1.2.0

  • Use this.parse instead of acorn.parse
  • Make code removal more conservative (#9)

1.1.1

  • Return a name

1.1.0

  • Remove methods of this and super (#3)

1.0.3

  • Fix build

1.0.2

  • Default to adding sourcemap locations

1.0.1

  • Skip removed call expressions from further AST traversal

1.0.0

  • Initial release