Trey Philips
Trey Philips
yeah, i've wanted this myself. i've added it to [the to do list](https://github.com/treyp/thebutton/blob/master/README.md#to-do-list).
Thanks @adrianha, moving back to RN 0.57.1 (with metro 0.45.6) fixed this for me. Must be a regression in metro 46 or 47, and/or RN 0.57.2.
@ivan-jorge001 I generate my `rn-cli.config.js` using `metro-with-symlinks`. Here's a simplified version: ```js const path = require('path'); const extraNodeModules = { 'react': path.resolve(__dirname, 'node_modules/react'), 'react-native': path.resolve(__dirname, 'node_modules/react-native') }; const blacklistRegexes =...
Yep, I think changing the asset path to be given as a query param is the only way forward here. Brief recap for others: * In dev mode, assets are...
Trailing slash was a problem for me too. `bash`'s path completion when typing `whack link ../some-dir/` adds a trailing slash by default which then gets added to the `whackage.json` file...
I suspect this is an issue in metro and can't be fixed using metro options. The [only relevant options](https://facebook.github.io/metro/docs/en/configuration#react-native-only) are around asset transformation and I think configuring those will suffer...
yep, symlinks are working fine for me again. i'm using `[email protected]` with `[email protected]` (just published). i'd suggest trying RN >= 0.59. they were broken for me in 0.57.2 and 0.58.
Sorry, that comment was based on my usage of RN 0.59 in iOS only. I've tried using Android and the issue still exists there. However, I don't think it's something...