EN
Angular clear cache with npm
1
answers
4
points
How do I clear entire cache from my angular app from npm command line level?
1 answer
4
points
npm cache clean --force
Why do we use --force
?
Most of the time (in my case I always use it) we need to use force to make it works.
Personally when I use this cmd without --force
parameter the app still doesn't work... as expected but after running this command with --force
, it works like charm.
0 comments
Add comment