rollup-plugin-strip-banner
TypeScript icon, indicating that this package has built-in type declarations

3.1.0 • Public • Published

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

  • 3.1.0
    • Add support for rollup ^4.0.0
    • Dependency upgrades
  • 3.0.0
    • Add support for rollup ^3.0.0
    • Dependency upgrades
    • Remove support of node < 14
  • 2.0.0
    • Add support for rollup ^2.0.0.
    • Remove support of node < 10.
  • 1.2.0
    • Make rollup peer dependency explicit.
    • Make support of node >= 6 explicit.
  • 1.1.0
    • Dependency updates.
  • 1.0.0
    • Fix issue with sourcemap generation.
    • Dependency updates.
  • 0.3.0
    • Dependency updates.
  • 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.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 3.1.0
    1,230
    • latest

Version History

Package Sidebar

Install

npm i rollup-plugin-strip-banner

Weekly Downloads

12,519

Version

3.1.0

License

MIT

Unpacked Size

70.3 kB

Total Files

6

Last publish

Collaborators

  • mickael.jeanroy