I want to remove react-native-elements in my react-native project.
yarn remove react-native-elements
yarn remove react-native-vector-icons
when I remove this module and its dependence, I got an error .
error: bundling failed: Error: Unable to resolve module `react-native-elements` from `/Users/assetfun/Desktop/amigo/src/components/registerLogin/registerLogin.js`: Module `react-native-elements` does not exist in the Haste module map
this method can't solve the problem.
- Clear watchman watches:
watchman watch-del-all. - Delete the
node_modulesfolder:rm -rf node_modules && npm install. - Reset Metro Bundler cache:
rm -rf /tmp/metro-bundler-cache-*ornpm start -- --reset-cache. 4. Remove haste cache:rm -rf /tmp/haste-map-react-native-packager-*.
want someone help
react-native-elementsandreact-native-vector-iconsare not imported and used in any file?. Looks likeregisterLogin.jshas reference to these modules.yarn remove <package>will only update package.json and yarn.lock file, not your source files. Check your source files. - Ravi Raj