systemjs / plugin-babel

SystemJS Babel Plugin
MIT License
83 stars 33 forks source link

ES module plugin? #37

Closed guybedford closed 8 years ago

guybedford commented 8 years ago

We may need to add the code:

pluginAndPresetModules = pluginAndPresetModules.map(function(m) {
  return m.default || m;
});

To https://github.com/systemjs/plugin-babel/blob/master/plugin-babel.js#L102 in order to support ES module plugins.

Vanuan commented 8 years ago

Ok, I'll try

Vanuan commented 8 years ago

Looks to be working.

guybedford commented 8 years ago

Thanks for confirming - I've merged a slight adjustment to this in https://github.com/systemjs/plugin-babel/commit/a4110ccf4e064a8d18943d653ed1a0d5f547c77b.