webpack-angular-externals
v1.0.2
Published
A tiny utility to prevent webpack bundling @angular dependencies in your library code
Downloads
1,938
Maintainers
Readme
webpack-angular-externals
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