[plugin] Add default export to forget

This commit is contained in:
Sathya Gunasekaran
2023-01-23 14:36:54 -05:00
parent 8e08334a42
commit 294b6c752d
+3 -1
View File
@@ -4,7 +4,6 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
export { default as BabelPlugin } from "./Babel/BabelPlugin";
export { compile, run } from "./CompilerPipeline";
export { printHIR } from "./HIR";
@@ -13,3 +12,6 @@ export { printReactiveFunction } from "./ReactiveScopes";
declare global {
var __DEV__: boolean | null | undefined;
}
import ReactForgetBabelPlugin from "./Babel/BabelPlugin";
export default ReactForgetBabelPlugin;