2.1.5 • Published 5 years ago

webpack-one-to-one-plugin v2.1.5

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

webpack-one-to-one-plugin

Allow to make webpack build without bundling to one file. This plugin will emit all files in the dependency tree to output.path as separate files.

Fork of this plugin, but with some fixes and refactoring, also support webpack 3 and webpack 4

Install

npm install -D webpack-one-to-one-plugin

Usage

In your webpack.config.js:

const path = require('path');
const OneToOnePlugin = require('webpack-one-to-one-plugin');
{
    plugins: [
        new OneToOnePlugin({
            ignorePattern: /node_modules/ // default,
            path: path.join(__dirname, 'unbundled-out') // defaults to `output.path`
        })
    ]
}
2.1.5

5 years ago

2.0.5

6 years ago

2.0.4

6 years ago

2.0.3

6 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.0.0

6 years ago