UnableToResolveError: cannot resolve the `merge` module from / ART / React Native libraries ART.js

I am new to React-native.

I am stuck with this error: UnableToResolveError: cannot resolve module mergefrom /ART/ReactNativeART.js libraries

dependencies that I used:

"dependencies": {
    "apsl-react-native-button": "^3.0.2",
    "react": "16.0.0-alpha.6",
    "react-native": "0.44.2",
    "react-native-deprecated-custom-components": "^0.1.0",
    .....................
  },

in file node_modules -> react-native / Libraries / ART / ReactNativeART.js is also available.

When I run the command react-native run-android, I encounter this error.

Can someone help me with this?

+6
source share
1 answer

Just need to install this module. npm i --save merge

0
source

All Articles