Bundle More Webpack Plugin
![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)
Webpack Plugin to bundle extra sources to your app.
ps. Support Webpack >= 5.0.0
Installation
yarn add --dev bundle-more-webpack-plugin
Usage
In your webpack config
const { BundleMoreWebpackPlugin } = require('bundle-more-webpack-plugin')
module.exports = {
...
plugins: [
...,
new BundleMoreWebpackPlugin(
['file-path-to-bundle']
)
]
}
custom entry name
const { BundleMoreWebpackPlugin } = require('bundle-more-webpack-plugin')
module.exports = {
...
plugins: [
...,
new BundleMoreWebpackPlugin(
['file-path-to-bundle']
, 'main'
)
]
}