Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

npm WARN deprecated [email protected]: Browserslist 2 could fail on reading Browserslist >3.0

I'm using ionic 3 whatsapp clone github project but when i run ionic serve command got this error when i try to install appscripts Error npm WARN deprecated [email protected]: Browserslist 2 could fail on reading Browserslist >3.0 config used in other tools.

like image 778
Muhammad Hamza Nisar Avatar asked Aug 06 '18 07:08

Muhammad Hamza Nisar


1 Answers

Uninstal Ionic and Cordova:

npm uninstall cordova ionic

Then clean cache:

npm cache clean -f

Then install ionic and cordova again:

npm install -g [email protected]
npm install -g [email protected]

Worked for me!

like image 152
Akash Shukla Avatar answered Sep 20 '22 00:09

Akash Shukla