lib - export utils from main export

This commit is contained in:
2019-08-27 22:58:47 +05:30
parent ceaa1eee32
commit a1204cfc1b
+3 -1
View File
@@ -4,11 +4,13 @@ import {
findNodeByComponentRef, findNodeByComponentRef,
findNodeByComponentName findNodeByComponentName
} from "./findNode"; } from "./findNode";
import * as Utils from "./utils";
export { export {
traverse, traverse,
traverseGenerator, traverseGenerator,
findNodeByComponent, findNodeByComponent,
findNodeByComponentRef, findNodeByComponentRef,
findNodeByComponentName findNodeByComponentName,
Utils
}; };