Dependancies Issues
When I run...
npm install
I get the below message...
npm warn deprecated inflight@1.0.6: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
npm warn deprecated rimraf@2.7.1: Rimraf versions prior to v4 are no longer supported
npm warn deprecated glob@7.2.3: Glob versions prior to v9 are no longer supported
Should I be worried about this?
Replies (2)
Hi Pete,
The warnings you're seeing are not critical. If the deprecated packages are sub-dependencies (i.e., not directly in your package.json), you may need to wait for their maintainers to release updates.
If your project is working fine and you don't have immediate issues, you don't have to worry about it right away. But we will keep updating the package version in main package.json on each Metronic update release.
Thanks