Socket
Book a DemoInstallSign in
Socket

bundle-more-webpack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bundle-more-webpack-plugin

[![semantic-release](https://img.shields.io/badge/semantic-release-e10079.svg?logo=semantic-release)](https://github.com/semantic-release/semantic-release) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https

latest
Source
npmnpm
Version
2.0.0
Version published
Maintainers
1
Created
Source

Bundle More Webpack Plugin

semantic-release JavaScript Style Guide ts code style: prettier License: MIT

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' // default 'client'
        )
    ]
}

FAQs

Package last updated on 27 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts