0.9.9 • Published 9 years ago

require-parts-babel v0.9.9

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

RequirePartsBabel

Babel transformation related to require-parts that does that converts the:

var R = requireParts('ramda', 'src', ['zipObj.js', 'min.js']);

into:

var R = {
    assocPath: require('ramda/src/zipObj.js'),
    defaultTo: require('ramda/src/min.js')
};

At the moment this is nothing too special and it returns a string which @sebmck says is bad. I'll try and figure this out some other day as the sun is shining outside!