From a75fef48bfb440a22fdc9605d4e677b87ebf290f Mon Sep 17 00:00:00 2001 From: Miguel Jimenez Esun Date: Fri, 3 Nov 2017 06:06:32 -0700 Subject: [PATCH] Add code for generating remote assets Reviewed By: davidaurelio Differential Revision: D6201839 fbshipit-source-id: 78c81eae03c6137ba9bbe33cd7aab8b87020f8d2 --- local-cli/core/Constants.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/local-cli/core/Constants.js b/local-cli/core/Constants.js index ff8b383cb..66d59f8e9 100644 --- a/local-cli/core/Constants.js +++ b/local-cli/core/Constants.js @@ -13,5 +13,10 @@ 'use strict'; const ASSET_REGISTRY_PATH = 'react-native/Libraries/Image/AssetRegistry'; +const ASSET_SOURCE_RESOLVER_PATH = + 'react-native/Libraries/Image/AssetSourceResolver'; -module.exports = {ASSET_REGISTRY_PATH}; +module.exports = { + ASSET_REGISTRY_PATH, + ASSET_SOURCE_RESOLVER_PATH, +};