From 3d27a04b2acd42bbba53b16a1428f72dbc1da9f6 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Sat, 11 Mar 2017 19:15:12 +0000 Subject: [PATCH] Add missing forwarding module (oops) --- .../forwarding/ReactFiberErrorLogger.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 scripts/rollup/forwarding/ReactFiberErrorLogger.js diff --git a/scripts/rollup/forwarding/ReactFiberErrorLogger.js b/scripts/rollup/forwarding/ReactFiberErrorLogger.js new file mode 100644 index 0000000000..d427e3b803 --- /dev/null +++ b/scripts/rollup/forwarding/ReactFiberErrorLogger.js @@ -0,0 +1,19 @@ +/** + * Copyright 2013-present, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @providesModule ReactFiberErrorLogger + * @flow + */ + +'use strict'; + +const { + __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED, +} = require('ReactDOMFiber-fb'); // It doesn't exist in Stack + +module.exports = __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactFiberErrorLogger;