react-native-monorepo-tools icon indicating copy to clipboard operation
react-native-monorepo-tools copied to clipboard

Tools and utils to support a React Native monorepo built with Yarn Workspaces

Results 8 react-native-monorepo-tools issues
Sort by recently updated
recently updated
newest added

`const monorepoMetroTools = getMetroTools();` When logging monorepoMetroTools, i get this: ` extraNodeModules: {}, blockList: [], watchFolders: [ '/Users/oskar/Desktop/projects/app-helsingborg-guide/node_modules', '/Users/oskar/Desktop/projects/app-helsingborg-guide/cities/Helsingborg', '/Users/oskar/Desktop/projects/app-helsingborg-guide/cities/Lund', '/Users/oskar/Desktop/projects/app-helsingborg-guide/guide-app' ]` how do i get the extraNodeModules and blockList?...

Reading on https://reactnative.dev/blog/2023/06/21/0.72-metro-package-exports-symlinks#new-metro-features `Symlink support enables React Native to work transparently with monorepo setups and pnpm, removing the need for workarounds. See [Enabling Beta Features](https://reactnative.dev/blog/2023/06/21/0.72-metro-package-exports-symlinks#enabling-beta-features) to use in your app.`...

Please see src/index.js, it does not have any references to `get-current-workspace.js`

While following https://mmazzarolo.com/blog/2021-09-22-running-react-native-everywhere-web/, I had to comment the `addNohoistAliases()` call in my [craco.config.js](https://github.com/mmazzarolo/react-native-universal-monorepo/blob/master/packages/web/craco.config.js#L12) file, otherwise I got the following error: ``` ERROR in ./src/index.js 4:0-26 Module not found: Error: You...

While following https://mmazzarolo.com/blog/2021-09-11-running-react-native-everywhere/, I faced the same "Android assets resolution bug" with my react-native-windows app: logo not displayed above the hello message. I tried to apply the `getMetroAndroidAssetsResolutionFix()` to fix...

Hi, Thanks for the library, Quick question: how to alias my existing react native dependencies to their web counterparts? For example: `{ "react-native": "react-native-web", "react-native-linear-gradient": "react-native-web-linear-gradient", "react-native-maps": "react-native-web-maps", "react-native-webview": "react-native-web-webview",...

See https://github.com/mmazzarolo/react-native-universal-monorepo/issues/22#issuecomment-950137606 for more info on the issue. Solution: Update `react-native-monorepo-tools` to block `react-native-reanimated/node_modules/react-native` (or from react-native-svg, which is what I just tried). From my testing, just adding something like...

bug
good first issue

If I try to move packages **one level deep**, ie instead of `packages/app` and `packages/mobile` using `packages/examples/app` and `packages/examples/mobile` I see error when try to run application, saying can't find...

question