Nishant Tomar
Nishant Tomar

Reputation: 11

How to uninstall npm package which is inside onother npm package

I install this react-native-instagram-login package which contain react-native-webview this package so I want to uninstall react-native-webview this one because I already installed it in my react native project and its give me error -> Tried to register two views with the same name RNCWebView.

Upvotes: 0

Views: 1578

Answers (1)

Sahil khan
Sahil khan

Reputation: 135

Simply you can try this command in your case

npm uninstall react-native-webview or npm uninstall --save react-native-webview or if its a devDependency then npm uninstall --save-dev react-native-webview

Upvotes: 1

Related Questions