I want to build different .ipa bundles from different projects on build machine.
Server will clone branch, run some scripts/static analyzers etc. And in the end it will run xcodebuild.
By default in the end of xcodebuild react-native runs "react-native start", and it will book the 8081 port.
It does absolutely nothing because RN compiles without this server.But i want to prevent all possible side effects on the build machine.
Right now i just killing this process with "kill" command.But maybe is there a way to turn this autolaunch off?
Thanks!