File tree 2 files changed +14
-1
lines changed
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ import {getCommands} from './commands';
17
17
import init from './commands/init/init' ;
18
18
import assertRequiredOptions from './tools/assertRequiredOptions' ;
19
19
import logger from './tools/logger' ;
20
+ import findPlugins from './tools/findPlugins' ;
20
21
import pkgJson from '../package.json' ;
21
22
22
23
commander
@@ -202,4 +203,4 @@ export default {
202
203
init,
203
204
} ;
204
205
205
- // export { run, init };
206
+ export { run , init , findPlugins } ;
Original file line number Diff line number Diff line change
1
+ /**
2
+ * This file exists only because RN 0.59.0 stable consumes it and we don't want
3
+ * to introduce a breaking change.
4
+ * See consumer: https://github.com/facebook/react-native/blob/7c73f2bb5a0f97902f469bc043681e79e161aac3/jest/hasteImpl.js#L28
5
+ * @todo : remove in 2.0
6
+ *
7
+ * @flow
8
+ */
9
+
10
+ import findPlugins from '../tools/findPlugins' ;
11
+
12
+ export default findPlugins ;
You can’t perform that action at this time.
0 commit comments