Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Package '@angular/core' is not a dependency. while updating angular 8 to angular 9

While updating angular 8 project to angular 9 , getting error

✔ Package successfully installed.
Using package manager: 'npm'
Collecting installed dependencies...
Found 0 dependencies.
Package '@angular/core' is not a dependency.

command I use

ng update @angular/core@9 @angular/cli@9 --force
like image 561
Ashutosh Jha Avatar asked Sep 01 '25 11:09

Ashutosh Jha


1 Answers

Run command

npm i

then it works

like image 82
Ashutosh Jha Avatar answered Sep 04 '25 01:09

Ashutosh Jha