Socket
Socket
Sign inDemoInstall

bundle-more-webpack-plugin

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

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


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Created
Weekly downloads
 

Readme

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

Last updated on 27 Jul 2022

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc