magus / react-native-facebook-login

React Native component wrapping the native Facebook SDK login button and manager
MIT License
1.24k stars 327 forks source link

ESIGIT Appears to be a git repo or submodule. #313

Open kayzenkayzen opened 6 years ago

kayzenkayzen commented 6 years ago

npm install broken after upgrade to 1.6.1 version of this library.

Whats mean, i can see that this version is in npm registry but not in github

susandev6 commented 6 years ago

I have the same issue. Current work around is to rm -rf node_modules, and then run npm install again. Run npm install second time will results in the error

Mikepicker commented 6 years ago

try with rm -rf node_modules/react-native-facebook-login/.git

uday-brainium commented 5 years ago

I am facing the same issue suddenly . Please suggest any fix of this . If i delete .git file the npm installed but my project is not running giving error in other dependency.

fasidOnGit commented 5 years ago

@uday-brainium You don't need to delete the .git folder from your project rather than the lib project showing the error. For eg: The websocket library from node_modules was showing the error. I had to do like rm -r /home/user/MyProject/node_modules/websocket/.git

noway commented 5 years ago

As sugggested by @Irislm (https://github.com/react-native-community/react-native-safe-area-view/issues/73#issuecomment-492971839), run

rm -rf node_modules/*/.git/
SnehalRam commented 5 years ago

@Mikepicker Hey thanks .