webpack-angular-externals

A tiny utility to prevent webpack bundling @angular dependencies in your library code

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
webpack-angular-externals
311.0.26 years ago6 years agoMinified + gzip package size for webpack-angular-externals in KB

Readme

webpack-angular-externals
Build Status codecov
A tiny utility to prevent webpack bundling @angular dependencies in your library code

Installation

npm install webpack-angular-externals --save-dev

Usage

// webpack.config.js
const webpackAngularExternals = require('webpack-angular-externals');

module.exports = {
  // rest of config here
  externals: [
    webpackAngularExternals(),
    {
      'another-external-lib': {
        root: ['anotherExternalLib'],
        commonjs: 'another-external-lib',
        commonjs2: 'another-external-lib',
        amd: 'another-external-lib'
      }
    }
  ]
};

License

MIT