Files
meteor/packages/ecmascript/plugin.js
Sashko Stubailo 291c8fe344 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-01 19:11:25 -07:00

6 lines
99 B
JavaScript

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