Add additional event API responder surfaces (#15248)

* Add rest of event modules + small fixes
This commit is contained in:
Dominic Gannaway
2019-03-29 10:31:18 -07:00
committed by GitHub
parent 700f17be67
commit a41b217708
14 changed files with 659 additions and 14 deletions
+45
View File
@@ -507,6 +507,51 @@ const bundles = [
global: 'ReactEventsHover',
externals: [],
},
{
bundleTypes: [
UMD_DEV,
UMD_PROD,
NODE_DEV,
NODE_PROD,
FB_WWW_DEV,
FB_WWW_PROD,
],
moduleType: NON_FIBER_RENDERER,
entry: 'react-events/focus',
global: 'ReactEventsFocus',
externals: [],
},
{
bundleTypes: [
UMD_DEV,
UMD_PROD,
NODE_DEV,
NODE_PROD,
FB_WWW_DEV,
FB_WWW_PROD,
],
moduleType: NON_FIBER_RENDERER,
entry: 'react-events/swipe',
global: 'ReactEventsSwipe',
externals: [],
},
{
bundleTypes: [
UMD_DEV,
UMD_PROD,
NODE_DEV,
NODE_PROD,
FB_WWW_DEV,
FB_WWW_PROD,
],
moduleType: NON_FIBER_RENDERER,
entry: 'react-events/drag',
global: 'ReactEventsDrag',
externals: [],
},
];
// Based on deep-freeze by substack (public domain)