clean-css-cli icon indicating copy to clipboard operation
clean-css-cli copied to clipboard

inflight and glob deprecated.

Open laurentmuller opened this issue 10 months ago • 1 comments

When installaing clean-css-cli, NPM warn about deprecated:

npm install clean-css-cli -g
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]: Glob versions prior to v9 are no longer supported.

laurentmuller avatar Mar 04 '25 11:03 laurentmuller

It's just matter of update depencies in package.json :

Before:

"glob": "^7.1.6"

After:

"glob": "^11.0.1"

laurentmuller avatar Mar 04 '25 11:03 laurentmuller