A Webpack plugin that automates creation of DLL bundles using Webpack's DllPlugin and DllReferencePlugin. This package (v1.0.0-beta.5) is an early beta release; it simplifies splitting vendor/polyfill code into separate DLL files, monitors package changes for rebuilds, and provides a resolveFile helper. It is intended for Webpack 3/4 but has known issues with newer versions. Development appears stalled, with no updates since 2017. Alternatives: hard-source-webpack-plugin or Webpack's built-in cache.
npm install webpack-dll-bundles-pluginVerified import paths — ran on the pinned version, not inferred.
Creates DLL bundles for polyfills and vendor libraries, merging a common webpack config.
Consider using hard-source-webpack-plugin or Webpack's built-in persistent caching.
Define bundles in the plugin config, not in the base webpack config.
Always use DllBundlesPlugin.resolveFile() to get DLL filenames.
Manually trigger rebuild or watch using webpack --watch.
Run 'npm install webpack-dll-bundles-plugin@1.0.0-beta.5 --save-dev'
Use 'const DllBundlesPlugin = require('webpack-dll-bundles-plugin');'Add 'webpackConfig' to the options object (path or config object).