Use lowercase entry points for event modules (#15535)

Matches npm convention
This commit is contained in:
Andrew Clark
2019-04-29 16:25:56 -07:00
committed by GitHub
parent 43c4e5f348
commit 7882c41f60
13 changed files with 77 additions and 42 deletions
+6 -6
View File
@@ -487,7 +487,7 @@ const bundles = [
FB_WWW_PROD,
],
moduleType: NON_FIBER_RENDERER,
entry: 'react-events/Press',
entry: 'react-events/press',
global: 'ReactEventsPress',
externals: [],
},
@@ -502,7 +502,7 @@ const bundles = [
FB_WWW_PROD,
],
moduleType: NON_FIBER_RENDERER,
entry: 'react-events/Hover',
entry: 'react-events/hover',
global: 'ReactEventsHover',
externals: [],
},
@@ -517,7 +517,7 @@ const bundles = [
FB_WWW_PROD,
],
moduleType: NON_FIBER_RENDERER,
entry: 'react-events/Focus',
entry: 'react-events/focus',
global: 'ReactEventsFocus',
externals: [],
},
@@ -532,7 +532,7 @@ const bundles = [
FB_WWW_PROD,
],
moduleType: NON_FIBER_RENDERER,
entry: 'react-events/FocusScope',
entry: 'react-events/focus-scope',
global: 'ReactEventsFocusScope',
externals: [],
},
@@ -547,7 +547,7 @@ const bundles = [
FB_WWW_PROD,
],
moduleType: NON_FIBER_RENDERER,
entry: 'react-events/Swipe',
entry: 'react-events/swipe',
global: 'ReactEventsSwipe',
externals: [],
},
@@ -562,7 +562,7 @@ const bundles = [
FB_WWW_PROD,
],
moduleType: NON_FIBER_RENDERER,
entry: 'react-events/Drag',
entry: 'react-events/drag',
global: 'ReactEventsDrag',
externals: [],
},