You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When installing nyc there are a number of npm warnings about deprecated packages:
$ npm i -D nyc
npm WARN deprecated [email protected]: 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 [email protected]: Rimraf versions prior to v4 are no longer supported
npm WARN deprecated [email protected]: Glob versions prior to v9 are no longer supported
npm WARN deprecated [email protected]: Glob versions prior to v9 are no longer supported
npm WARN deprecated [email protected]: Glob versions prior to v9 are no longer supported
It looks like glob is only used in tests, so maybe this should be moved to devDependencies?
It's complicated. rimraf is used directly by nyc, but also in various modules that are dependencies of nyc. Including istanbul-lib-processinfo, which itself has a devDependency on nyc.
When installing
nyc
there are a number of npm warnings about deprecated packages:It looks like
glob
is only used in tests, so maybe this should be moved todevDependencies
?Usages of
rimraf
will need to be modified slightly but this doesn't look too onerous.inflight
is only used as a dependency of the other two.Environment Information
The text was updated successfully, but these errors were encountered: