From 0a7f5203b5e6793c8147d3e1c3aad7c3aca5a8a4 Mon Sep 17 00:00:00 2001 From: Ryan Linton Date: Mon, 16 Oct 2017 21:28:24 -0700 Subject: [PATCH] Use index.js as entry file --- bin/ci | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/ci b/bin/ci index fa0e91b54..43b18f3c0 100755 --- a/bin/ci +++ b/bin/ci @@ -104,14 +104,14 @@ check_builds() test_command npm run lint echo '~ Build ios' - test_command react-native bundle --entry-file index.ios.js --bundle-output test.ios.js --dev false --platform ios --assets-dest iosAssets + test_command react-native bundle --entry-file index.js --bundle-output test.ios.js --dev false --platform ios --assets-dest iosAssets if [ ! -d "iosAssets" ]; then echo 'iosAssets folder did not generate' SOMETHING_FAILED=1 fi echo '~ Build android' - test_command react-native bundle --entry-file index.android.js --bundle-output test.android.js --dev false --platform android --assets-dest androidAssets + test_command react-native bundle --entry-file index.js --bundle-output test.android.js --dev false --platform android --assets-dest androidAssets if [ ! -d "androidAssets" ]; then echo 'androidAssets folder did not generate' SOMETHING_FAILED=1