6.1.0 • Published 8 years ago

babel-plugin-transform-helper-modules v6.1.0

Weekly downloads
33
License
MIT
Repository
github
Last release
8 years ago

babel-plugin-transform-helper-modules

Externalize references to helpers using babel-helper-modules.

If you want to externalize builtins too via core-js's library, see the official plugin babel-plugin-transform-runtime.

Installation

$ npm install babel-plugin-transform-helper-modules babel-helper-modules

Usage

Remember to also install babel-helper-modules. when using the transpiled code.

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["transform-helper-modules"]
}

Via CLI

$ babel --plugins transform-helper-modules script.js

Via Node API

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