bit-loader-babel

2.0.0 • Public • Published

bit-loader-babel

babel plugin for bit loader.

Examples

simple bit-bundler setup. This will pick up you .babelrc config files.

var Bitbundler = require("bit-bundler");
 
var bitbundler = new Bitbundler({
  loader: [
    "bit-loader-babel"
  ]
})

configuring a different babel core

bit-loader-babel uses the babel-core module to transpile your code, and it ships with one by default. You can override the babel-core module that bit-loader-babel uses if you need newer/older/specific versions of babel.

var Bitbundler = require("bit-bundler");
var babelCore = require("babel-core");
 
var bitbundler = new Bitbundler({
  loader: [
    ["bit-loader-babel", {
      core: babelCore,
    }]
  }
})

License

License under MIT

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.0.0
    1
    • latest

Version History

Package Sidebar

Install

npm i bit-loader-babel

Weekly Downloads

0

Version

2.0.0

License

MIT

Last publish

Collaborators

  • manchagnu