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

Package Sidebar

Install

npm i bit-loader-babel

Weekly Downloads

8

Version

2.0.0

License

MIT

Last publish

Collaborators

  • manchagnu