babel (6to5) transform for bit-imports and bit-bundler
npm install babel-bits
npm install --save babel-bits
`$3
are forwarded right to babel. Take a look at all available options to fine tune babel.
> babel-bits configures
es2015 and react presets. Feel free to provide your own.$3
` javascript
bitimports.plugin("js", {
transform: {
handler: "babel-bits",
options: {
sourceMaps: "inline",
presets: ["es2015"]
}
}
});
`$3
babel needs an external tool called regenerator in order to support generators. To bring generator support into your application, you can just load regenerator via script tag (or equivalent) and all generator code produced by babel will run just fine. The idea here is that the code produced by babel can find the method regeneratorRuntime` whenever it is executed.