Socket
Socket
Sign inDemoInstall

bunchee

Package Overview
Dependencies
6
Maintainers
1
Versions
139
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

bunchee


Version published
Weekly downloads
46K
decreased by-10.27%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

bunchee

zero config bundler for js library

Installation

npm install --save-dev bunchee

Usage

CLI

Usage: bunchee [options]

Options:
  -v, --version     output the version number
  -w, --watch       watch src files changes
  -d, --dest <dir>  specify output dest file
  -h, --help        output usage information

Usage:
  $ bunchee ./src/index.js

Dev Dependency

Declare your main field and module field in package.json, then call bunchee cli in build scripts

{
  "main": "dist/pkg.cjs.js",
  "module": "dist/pkg.esm.js",
  "scripts": {
    "build": "bunchee ./src/index.js"
  }
}

Or use it globally

# assume your file entry is ./src/index.js
# make sure there is a package.json file in your project root directory
# make sure there are `main` and `name` fields in package.json for description

cd <project-root-dir>
bunchee ./src/index.js

Keywords

FAQs

Last updated on 09 Nov 2019

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

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc