chore: bump Examples to 0.72 (#2084)

Bump Example and FabricExample to RN 0.72
This commit is contained in:
Wojciech Lewicki
2023-07-05 22:46:42 +02:00
committed by GitHub
parent 7c1d537c2f
commit 91f6bd1fa9
59 changed files with 6426 additions and 6374 deletions

View File

@@ -1,3 +1,12 @@
const {getDefaultConfig, mergeConfig} = require('@react-native/metro-config');
/**
* Metro configuration
* https://facebook.github.io/metro/docs/configuration
*
* @type {import('metro-config').MetroConfig}
*/
/* eslint-disable import/no-commonjs */
const path = require('path');
@@ -11,7 +20,7 @@ const modules = [
...Object.keys(pack.peerDependencies),
];
module.exports = {
const config = {
projectRoot: __dirname,
watchFolders: [root],
@@ -39,4 +48,6 @@ module.exports = {
},
}),
},
};
};
module.exports = mergeConfig(getDefaultConfig(__dirname), config);