This might be related to https://github.com/facebook/react-native/issues/4968
To resolve try the following:
Clear watchman watches:
watchman watch-del-all
.Delete the
node_modules
folder: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-*
.