2021-04-08 11:37:35 -06:00
|
|
|
/**
|
|
|
|
* Metro configuration for React Native
|
2024-03-07 08:00:00 -07:00
|
|
|
* https://reactnative.dev/docs/metro
|
2021-04-08 11:37:35 -06:00
|
|
|
*
|
|
|
|
* @format
|
|
|
|
*/
|
|
|
|
const path = require('path');
|
2023-11-17 00:38:26 -07:00
|
|
|
const escape = require('escape-string-regexp');
|
|
|
|
|
2023-02-07 15:15:05 -07:00
|
|
|
const blacklist = require('metro-config/src/defaults/exclusionList');
|
2024-06-20 03:58:55 -06:00
|
|
|
const { getDefaultConfig } = require('expo/metro-config');
|
|
|
|
const { mergeConfig } = require('@react-native/metro-config');
|
2021-04-08 11:37:35 -06:00
|
|
|
|
2023-11-17 00:38:26 -07:00
|
|
|
const pak = require('../../package.json');
|
|
|
|
const root = path.resolve(__dirname, '../..');
|
|
|
|
const modules = Object.keys({...pak.peerDependencies});
|
|
|
|
|
2024-06-20 03:58:55 -06:00
|
|
|
const defaultConfig = getDefaultConfig(__dirname)
|
|
|
|
const { resolver, transformer } = defaultConfig
|
|
|
|
|
2023-10-12 02:36:15 -06:00
|
|
|
/**
|
|
|
|
* Metro configuration
|
|
|
|
* https://facebook.github.io/metro/docs/configuration
|
|
|
|
*
|
|
|
|
* @type {import('metro-config').MetroConfig}
|
|
|
|
*/
|
|
|
|
const config = {
|
2023-11-17 00:38:26 -07:00
|
|
|
watchFolders: [root],
|
2021-04-08 11:37:35 -06:00
|
|
|
resolver: {
|
2024-06-20 03:58:55 -06:00
|
|
|
...resolver,
|
2021-04-08 11:37:35 -06:00
|
|
|
blacklistRE: blacklist([
|
|
|
|
// This stops "react-native run-windows" from causing the metro server to crash if its already running
|
|
|
|
new RegExp(
|
|
|
|
`${path.resolve(__dirname, 'windows').replace(/[/\\]/g, '/')}.*`,
|
|
|
|
),
|
2022-05-19 07:29:25 -06:00
|
|
|
// This prevents "react-native run-windows" from hitting: EBUSY: resource busy or locked, open msbuild.ProjectImports.zip
|
|
|
|
/.*\.ProjectImports\.zip/,
|
|
|
|
/(.*\/react-native-video\/node_modules\/.*)$/,
|
2023-11-17 00:38:26 -07:00
|
|
|
|
|
|
|
// We need to make sure that only one version is loaded for peerDependencies
|
|
|
|
// So we block them at the root, and alias them to the versions in example's node_modules
|
|
|
|
...modules.map(
|
|
|
|
name =>
|
|
|
|
new RegExp(`^${escape(path.join(root, 'node_modules', name))}\\/.*$`),
|
|
|
|
),
|
2021-04-08 11:37:35 -06:00
|
|
|
]),
|
2023-11-17 00:38:26 -07:00
|
|
|
extraNodeModules: modules.reduce((acc, name) => {
|
|
|
|
acc[name] = path.join(__dirname, 'node_modules', name);
|
|
|
|
return acc;
|
|
|
|
}, {}),
|
2024-03-01 06:43:36 -07:00
|
|
|
nodeModulesPaths: [
|
|
|
|
path.resolve(path.join(__dirname, './node_modules')),
|
2024-03-07 08:00:00 -07:00
|
|
|
path.resolve(path.join(__dirname, '../../node_modules')),
|
2024-03-01 06:43:36 -07:00
|
|
|
],
|
2023-11-17 00:38:26 -07:00
|
|
|
transformer: {
|
2024-06-20 03:58:55 -06:00
|
|
|
...transformer,
|
2023-11-17 00:38:26 -07:00
|
|
|
getTransformOptions: async () => ({
|
|
|
|
transform: {
|
|
|
|
experimentalImportSupport: false,
|
|
|
|
inlineRequires: true,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
2021-04-08 11:37:35 -06:00
|
|
|
},
|
2024-06-20 03:58:55 -06:00
|
|
|
transformer: {
|
|
|
|
...transformer, // <--- THIS WAS MISSING
|
|
|
|
},
|
2021-04-08 11:37:35 -06:00
|
|
|
};
|
2023-10-12 02:36:15 -06:00
|
|
|
|
2024-06-20 03:58:55 -06:00
|
|
|
module.exports = mergeConfig(defaultConfig, config);
|