error: bundling failed: TypeError: Cannot read property 'bindings' of null

别等时光非礼了梦想. 提交于 2019-11-29 13:58:22
Manish

I was using babel-preset-react-native in dependency which has been deprecated instead "metro-react-native-babel-preset": "^0.47.0" is now being used. So, I updated this in .babelrc file and I added the below line:

{
  "presets": ["module:metro-react-native-babel-preset"]
}

The above code resolved the issue.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!