1.3.7 • Published 5 years ago

@proactive-as/pnp.vendor v1.3.7

Weekly downloads
1
License
Apache-2.0
Repository
-
Last release
5 years ago

Build Status npm version NPM downloads

PnP Vendor

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

Usage

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