I just finished updating to rn 0.63.2, but since that, our builds for release fails.
After a lot of digging, I found out that the problem is related to the bundle failing to resolve the path aliases if it is running from the ios folder.
This happens because we use Fastlane to assist the releases.
I tried both node ... bundle and npx ... bundle with the same results (running from command line).
(still digging for more details, but feels like a regression)
adding cd .. and cd ios on Bundle React Native code and images step fixes the issue, but it isn't the optimal solution...
I just finished updating to
rn 0.63.2, but since that, our builds for release fails.After a lot of digging, I found out that the problem is related to the
bundlefailing to resolve the path aliases if it is running from theiosfolder.This happens because we use Fastlane to assist the releases.
I tried both
node ... bundleandnpx ... bundlewith the same results (running from command line).(still digging for more details, but feels like a regression)
adding
cd ..andcd iosonBundle React Native code and imagesstep fixes the issue, but it isn't the optimal solution...