mirror of
https://github.com/facebook/react-native.git
synced 2024-11-22 06:29:46 +00:00
85dd14c912
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/45447 This diff reverts D59170923 Breaking OSS build Changelog: [Internal] Reviewed By: blakef Differential Revision: D59759991 fbshipit-source-id: 39aa0b447a90801d1da5a39461b33b4c4cc4197b
33 lines
888 B
JavaScript
33 lines
888 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
// Inside the React Native monorepo, we need to explicitly extend the base
|
|
// CLI config as the adjacent package will not be conventionally discovered.
|
|
const config = require('../react-native/react-native.config.js');
|
|
|
|
module.exports = {
|
|
...config,
|
|
reactNativePath: '../react-native',
|
|
project: {
|
|
ios: {
|
|
sourceDir: '.',
|
|
},
|
|
android: {
|
|
sourceDir: '../../',
|
|
// To remove once the CLI fix for manifestPath search path is landed.
|
|
manifestPath:
|
|
'packages/rn-tester/android/app/src/main/AndroidManifest.xml',
|
|
packageName: 'com.facebook.react.uiapp',
|
|
watchModeCommandParams: ['--mode HermesDebug'],
|
|
},
|
|
},
|
|
};
|