/rollup-plugin-strip-banner

Rollup plugin that can be used to remove banner on JS files

Primary LanguageJavaScriptMIT LicenseMIT

rollup-plugin-strip-banner

Greenkeeper badge Build Status Npm version

A plugin for rollup that can be used to remove banners (such as license headers) from modules files before generating the final bundle.

Installation

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

Configuration and usage

Add the plugin in your rollup configuration file:

const stripBanner = require('rollup-plugin-strip-banner');

module.exports = {
  entry: 'src/index.js',
  dest: 'dist/index.js',
  plugins: [
    stripBanner()
  ]
}

As other rollup plugins, include and exclude can be configured:

const stripBanner = require('rollup-plugin-strip-banner');

module.exports = {
  entry: 'src/index.js',
  dest: 'dist/index.js',
  plugins: [
    stripBanner({
      include: '**/*.js',
      exclude: 'node_modules/**/*'
    })
  ]
}

ChangeLogs

  • 0.2.0
    • Dependency update (magic-string).
    • Dependency update (rollup-pluginutils).
  • 0.1.0 : First release

License

MIT License (MIT)

Contributing

If you find a bug or think about enhancement, feel free to contribute and submit an issue or a pull request.