Socket
Book a DemoInstallSign in
Socket

rollup-plugin-strip-banner

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rollup-plugin-strip-banner

Rollup plugin that can be used to remove banner on modules

3.1.0
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

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.

Keywords

rollup

FAQs

Package last updated on 14 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.