Skip to content

brogine/rollup-plugin-exclude-dependencies-from-bundle

 
 

Repository files navigation

npm semantic-release

Rollup Plugin Exclude Dependencies From Bundle

Automatically externalize dependencies and peerDependencies in a bundle.

Installation

npm install --save-dev rollup-plugin-exclude-dependencies-from-bundle

Usage

// Add to plugins in rollup.config.js
import excludeDependenciesFromBundle from "rollup-plugin-exclude-dependencies-from-bundle";

export default {
  plugins: [excludeDependenciesFromBundle(/*{ plugin options }*/)],
};

Plugin options

  • peerDependencies: true

    	Set to true for excluding peer dependencies from the bundled files.
    
  • dependencies: true

    	Set to true for excluding dependencies from the bundled files.
    
  • keep: string[]

    	Set this array with values you want to exclude from rollup external.
    

About

Automatically externalize dependencies and peerDependencies in a bundle.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 80.5%
  • JavaScript 19.5%