@proactive-as/angular.vendor
Version:
Angular Polyfills and Vendors 8.0.0
26 lines (23 loc) • 1.07 kB
Markdown
[](https://dev.azure.com/proactive/Frameworks/_build/latest?definitionId=4457)
[](https://badge.fury.io/js/%40proactive-as%2Fangular.vendor)
[](https://npmjs.org/package/@proactive-as/angular.vendor)
## 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:
```sh
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')
})
]
```