Error: Please, upgrade your dependencies to the actual version of core-js@3

后端 未结 5 4414
自闭症患者
自闭症患者 2020-12-09 09:34

I\'m trying to run npm start but giving me error \"An unhandled exception occurred: Could not find module \"@angular-devkit/build-angular\" I also tried to inst

5条回答
  •  一整个雨季
    2020-12-09 10:07

    I had a similar issue with the outdated dependency. I performed the following steps and it worked for me:

    npm uninstall -g angular-cli @angular/cli
    
    npm cache clean --force
    
    npm outdated (to check all the outdated dependency)
    
    npm update
    

    Finally go to the folder containing your project, then run this command:

    npm install -g @angular/cli
    

提交回复
热议问题