Skip to content

Commit

Permalink
Merge pull request facebook#8558 from bvaughn/rename-initialize-core
Browse files Browse the repository at this point in the history
Renamed InitializeJavaScriptAppEngine to InitializeCore
  • Loading branch information
bvaughn authored Dec 13, 2016
2 parents 0f34bdc + cdb38c1 commit 369769a
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion flow/react-native-host-hooks.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ declare module 'deepFreezeAndThrowOnMutationInDev' {
declare function exports<T>(obj : T) : T;
}
declare module 'flattenStyle' { }
declare module 'InitializeJavaScriptAppEngine' { }
declare module 'InitializeCore' { }
declare module 'RCTEventEmitter' {
declare function register() : void;
}
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ var moduleMapReactNative = Object.assign(
deepDiffer: 'react-native/lib/deepDiffer',
deepFreezeAndThrowOnMutationInDev: 'react-native/lib/deepFreezeAndThrowOnMutationInDev',
flattenStyle: 'react-native/lib/flattenStyle',
InitializeJavaScriptAppEngine: 'react-native/lib/InitializeJavaScriptAppEngine',
InitializeCore: 'react-native/lib/InitializeCore',
RCTEventEmitter: 'react-native/lib/RCTEventEmitter',
TextInputState: 'react-native/lib/TextInputState',
UIManager: 'react-native/lib/UIManager',
Expand Down
2 changes: 1 addition & 1 deletion src/renderers/native/ReactNativeInjection.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* ensures it exists in the dependency graph and can be `require`d.
* TODO: require this in packager, not in React #10932517
*/
require('InitializeJavaScriptAppEngine');
require('InitializeCore');

var EventPluginHub = require('EventPluginHub');
var EventPluginUtils = require('EventPluginUtils');
Expand Down
2 changes: 1 addition & 1 deletion src/renderers/native/ReactNativeStackInjection.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* ensures it exists in the dependency graph and can be `require`d.
* TODO: require this in packager, not in React #10932517
*/
require('InitializeJavaScriptAppEngine');
require('InitializeCore');

var React = require('React');
var ReactComponentEnvironment = require('ReactComponentEnvironment');
Expand Down

0 comments on commit 369769a

Please sign in to comment.