clean-css-cli
clean-css-cli copied to clipboard
inflight and glob deprecated.
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.
It's just matter of update depencies in package.json :
Before:
"glob": "^7.1.6"
After:
"glob": "^11.0.1"