We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72d9657 commit 0a3b7a7Copy full SHA for 0a3b7a7
packages/sdk-react-native/src/iosRunner.ts
@@ -57,11 +57,9 @@ export const packageReactNativeIOS = (isDev = false) => {
57
args.push('--verbose');
58
}
59
return executeAsync(
60
- `node ${doResolve(
61
- c.runtime.runtimeExtraProps?.reactNativePackageName || 'react-native'
62
- )}/local-cli/cli.js ${args.join(' ')} --config=${
63
- c.runtime.runtimeExtraProps?.reactNativeMetroConfigName || 'metro.config.js'
64
- }`,
+ `node ${doResolve(c.runtime.runtimeExtraProps?.reactNativePackageName || 'react-native')}/cli.js ${args.join(
+ ' '
+ )} --config=${c.runtime.runtimeExtraProps?.reactNativeMetroConfigName || 'metro.config.js'}`,
65
{
66
env: {
67
...CoreEnvVars.BASE(),
0 commit comments