Skip to content

Instantly share code, notes, and snippets.

View alielmajdaoui's full-sized avatar

Ali El Majdaoui alielmajdaoui

View GitHub Profile
@alielmajdaoui
alielmajdaoui / metro.config.js
Created October 16, 2021 20:02
Link Local Dependency in React Native - Metro Config - With watchFolders option
// Absolute path to your package
const packagePath =
'/Users/mac/my-own-packages/my-awesome-package';
module.exports = {
resolver: {
nodeModulesPaths: [packagePath],
// rest of metro resolver options...
},
watchFolders: [packagePath],
@alielmajdaoui
alielmajdaoui / metro.config.js
Created October 16, 2021 19:41
Link Local Dependency in React Native - Metro Config - Without watchFolders option
// Absolute path to your package
const packagePath =
'/Users/mac/my-own-packages/my-awesome-package';
module.exports = {
resolver: {
nodeModulesPaths: [packagePath],
// rest of metro resolver options...
},
// rest of metro options...