8.0.0 • Published 6 years ago

@proactive-as/angular.vendor v8.0.0

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
6 years ago

Build Status npm version NPM downloads

Angular Vendor

  • Contains reusable angular vendor bundle. Built using TypeScript, WebPack and verification tests using Jest
  • Contains Three Files:
    • angular.polyfills.js
    • angular.vendor.js
    • angular-vendor-manifest.json

Usage

  • run:
npm install --save-dev @proactive-as/angular.vendor
  • Modify your project's WebPack Configuration file and include following section:
plugins: [
        new webpack.DllReferencePlugin({
            context: ".",
            manifest: require('@proactive-as/angular.vendor/angular-vendor-manifest.json')
        })
]