mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
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.
6 lines
99 B
JavaScript
6 lines
99 B
JavaScript
Plugin.registerCompiler({
|
|
extensions: ['js'],
|
|
}, function () {
|
|
return new BabelCompiler();
|
|
});
|