jridgewell / babel-plugin-bundler

A concatenated module bundler, without redundant UMD boilerplate.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

babel-plugin-bundler

A concatenated module bundler, without redundant UMD boilerplate.

Installation

$ npm install babel-plugin-bundler

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["bundler"]
}

Via CLI

$ babel --plugins bundler script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["bundler"]
});

About

A concatenated module bundler, without redundant UMD boilerplate.

License:MIT License


Languages

Language:JavaScript 100.0%