npm.io
0.1.1 • Published 9 years ago

webpack-split-plugin

Licence
MIT
Version
0.1.1
Deps
5
Vulns
0
Weekly
0
Stars
2

webpack-split-plugin

split bundle into multiple pieces with custom specifications (currently hard coded as 1/2 the size)

extension of CommonsChunkPlugin

install

yarn add webpack-split-plugin --dev
npm i webpack-split-plugin --save-dev
const WebpackSplitPlugin = require('webpack-split-plugin')

example

plugins: [
  new WebpackSplitPlugin({
    // * required
    name: 'eh',
    filename: '[name]-split.js',

    // [optional], very verbose output
    debug: true,

    // [optional], automatically figures it out after first run
    totalSize: '1937kb', // 1.937mb
  }),
],

resources

tests

work-in-progress

more coming soon with stability & customizability.

Keywords