Files
meteor/packages/ecmascript/plugin.js
Sashko Stubailo 527cc13a8b Move BabelCompiler class into babel-compiler package
It used to be in the ecmascript package.
I want to use it in the jsx package, so it needs to be exported from somewhere.
2015-09-18 14:31:20 -04:00

6 lines
99 B
JavaScript

Plugin.registerCompiler({
extensions: ['js'],
}, function () {
return new BabelCompiler();
});