From d9c0dfe353eceb91efcec774bab0f65b6792e4fa Mon Sep 17 00:00:00 2001 From: Matt Oakes Date: Mon, 11 Feb 2019 13:33:01 -0800 Subject: [PATCH] Add a deprecation warning when importing NetInfo (#23383) Summary: Add a deprecation warning for the `NetInfo` module as part of #23313. [General] [Deprecated] - Deprecated NetInfo as it has now been moved to react-native-community/netinfo Pull Request resolved: https://github.com/facebook/react-native/pull/23383 Differential Revision: D14024702 Pulled By: cpojer fbshipit-source-id: 353a9fb86feba2ca7f948c618c642e40fcdbfada --- Libraries/react-native/react-native-implementation.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Libraries/react-native/react-native-implementation.js b/Libraries/react-native/react-native-implementation.js index 9649593d4d..18acbc2216 100644 --- a/Libraries/react-native/react-native-implementation.js +++ b/Libraries/react-native/react-native-implementation.js @@ -173,7 +173,7 @@ module.exports = { 'webview-moved', 'WebView has been extracted from react-native core and will be removed in a future release. ' + "It can now be installed and imported from 'react-native-webview' instead of 'react-native'. " + - 'See https://github.com/react-native-community/react-native-webview for more informations.', + 'See https://github.com/react-native-community/react-native-webview', ); return require('WebView'); }, @@ -252,6 +252,12 @@ module.exports = { return require('NativeEventEmitter'); }, get NetInfo() { + warnOnce( + 'netinfo-moved', + 'NetInfo has been extracted from react-native core and will be removed in a future release. ' + + "It can now be installed and imported from '@react-native-community/netinfo' instead of 'react-native'. " + + 'See https://github.com/react-native-community/react-native-netinfo', + ); return require('NetInfo'); }, get PanResponder() {