Open pascal-mueller opened 1 year ago
HI, I am running into the same or similar issue. where you able to resolve?
I didn't had time to look into it yet. Since the source maps are only used for debugging i.e. during development, it isn't critical for a functional application. You can basically ignore them since in production mode they shouldn't show up at all.
I used the env variable GENERATE_SOURCEMAP=false
to get rid of the warnings since the files are simply not generated. You can add it to the scripts
key in the package.json
e.g. like this
"scripts": {
"start": "GENERATE_SOURCEMAP=false && expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web"
},
but it doesn't do much since it doesn't work for hot reload. If I find the time to look into it in detail and I find the actual issue, I'd post here.
Hello, I'm running into the same issue.
Issue Description
I'm trying to add react-native-gifted-chat to my expo application. I added the example component given in the README. I get a lot of the following warnings.
Here's my package.json
Expected Results
I expect the files of the dependency to exist.
Additional Information
See packagejson above: