forked from microsoft/react-native-macos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metro.config.js
65 lines (60 loc) · 1.65 KB
/
metro.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
65
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
* @format
*/
'use strict';
const path = require('path');
const getPolyfills = require('./rn-get-polyfills');
const fs = require('fs');
/**
* This cli config is needed for development purposes, e.g. for running
* integration tests during local development or on CI services.
*/
// In sdx repo we need to use metro-resources to handle all the rush symlinking
if (
fs.existsSync(path.resolve(__dirname, '../../scripts/metro-resources.js'))
) {
const sdxHelpers = require('../../scripts/metro-resources');
module.exports = sdxHelpers.createConfig({
extraNodeModules: {
'react-native': __dirname,
},
roots: [path.resolve(__dirname)],
projectRoot: path.resolve(__dirname, '../../'),
serializer: {
getModulesRunBeforeMainModule: () => [
require.resolve('./Libraries/Core/InitializeCore'),
],
getPolyfills,
},
resolver: {
platforms: ['ios', 'macos', 'android'],
},
transformer: {
assetRegistryPath: require.resolve('./Libraries/Image/AssetRegistry'),
},
});
} else {
module.exports = {
serializer: {
getModulesRunBeforeMainModule: () => [
require.resolve('./Libraries/Core/InitializeCore'),
],
getPolyfills,
},
resolver: {
platforms: ['ios', 'macos', 'android'],
extraNodeModules: {
'react-native': __dirname,
},
},
transformer: {
assetRegistryPath: require.resolve('./Libraries/Image/AssetRegistry'),
},
};
}