forked from react-native-picker/picker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
react-native.config.js
64 lines (60 loc) · 1.99 KB
/
react-native.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/**
* This cli config is needed for the coexistance of react-native and other
* out-of-tree implementations such react-native-macos.
* The following issue is tracked by
* https://github.com/react-native-community/discussions-and-proposals/issues/182
*
* The work-around involves having a metro.config.js for each out-of-tree
* platform, i.e. metro.config.js for react-native and
* metro.config.macos.js for react-native-macos.
* This react-native.config.js looks for a --use-react-native-macos
* switch and when present pushes --config=metro.config.macos.js
* and specifies reactNativePath: 'node_modules/react-native-macos'.
* The metro.config.js has to blacklist 'node_modules/react-native-macos',
* and conversely metro.config.macos.js has to blacklist 'node_modules/react-native'.
*/
'use strict';
let supportsCodegenConfig = false;
try {
const rnCliAndroidVersion =
require('@react-native-community/cli-platform-android/package.json').version;
const [major] = rnCliAndroidVersion.split('.');
supportsCodegenConfig = major >= 9;
} catch (e) {
// ignore
}
module.exports = {
project: {
android: {
sourceDir: './FabricExample/android',
},
windows: {
sourceDir: './example/windows',
solutionFile: 'PickerExample.sln',
project: {
projectFile: 'PickerExample/PickerExample.vcxproj',
},
},
},
dependency: {
platforms: {
android: supportsCodegenConfig
? {
componentDescriptors: [
'RNCAndroidDialogPickerComponentDescriptor',
'RNCAndroidDropdownPickerComponentDescriptor',
],
cmakeListsPath: '../android/src/main/jni/CMakeLists.txt',
}
: {},
},
},
};
const macSwitch = '--use-react-native-macos';
if (process.argv.includes(macSwitch)) {
process.argv = process.argv.filter((arg) => arg !== macSwitch);
process.argv.push('--config=metro.config.macos.js');
module.exports = {
reactNativePath: 'node_modules/react-native-macos',
};
}