mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Use lowercase entry points for event modules (#15535)
Matches npm convention
This commit is contained in:
@@ -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: [],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user