File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 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';
1717import init from './commands/init/init' ;
1818import assertRequiredOptions from './tools/assertRequiredOptions' ;
1919import logger from './tools/logger' ;
20+ import findPlugins from './tools/findPlugins' ;
2021import pkgJson from '../package.json' ;
2122
2223commander
@@ -202,4 +203,4 @@ export default {
202203 init,
203204} ;
204205
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