Prefix warning module with fbjs/lib/

Summary:This works internally at FB but not here because mixed mode requires are mandatory. At FB www, only the providesModule version works. In React Core, we only use the providesModule name. I have to remember to change these back again when I do the move so that we can unify. 0f3bd02d0f

We really should pick a single convention per project. In React Core, we translate it in the package/build step to whatever output convention is needed.
Closes https://github.com/facebook/react-native/pull/6891

Differential Revision: D3160811

Pulled By: vjeux

fb-gh-sync-id: daf1f5e1cfae2a7c33cca88139fb5391d25bfe3e
fbshipit-source-id: daf1f5e1cfae2a7c33cca88139fb5391d25bfe3e
This commit is contained in:
Sebastian Markbage 2016-04-09 13:23:47 -07:00 коммит произвёл Facebook Github Bot 7
Родитель 49fdd99633
Коммит a7c8111605
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -13,7 +13,7 @@
const ReactIsomorphic = require('ReactIsomorphic');
const ReactNativeImpl = require('ReactNativeImpl');
const warning = require('warning');
const warning = require('fbjs/lib/warning');
const React = { ...ReactIsomorphic };

Просмотреть файл

@ -13,7 +13,7 @@
const ReactIsomorphic = require('ReactIsomorphic');
const ReactNativeImpl = require('ReactNativeImpl');
const warning = require('warning');
const warning = require('fbjs/lib/warning');
const ReactNative = { ...ReactNativeImpl };