webpack-angular-externals

1.0.2 • Public • Published

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

Package Sidebar

Install

npm i webpack-angular-externals

Weekly Downloads

601

Version

1.0.2

License

MIT

Last publish

Collaborators

  • mattlewis92