[x] checked I'm up to date with the latest version of the project
Expected behavior
No deprecation warnings on npm add svgicons2svgfont.
Actual behavior
$ npm add svgicons2svgfont
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 glob@8.1.0: Glob versions prior to v9 are no longer supported
added 13 packages in 2s
Steps to reproduce the behavior
Run npm add svgicons2svgfont in an empty project.
Debugging informations
node -v result:
v20.14.0
npm -v result:
10.7.0
If the result is lower than 16.15.0, there is
poor chances I even have a look to it. Please,
use the last NodeJS LTS version.
Other notes
It looks like updating glob would be straightforward here, the breaking changes in v9 and v10 don't seem to affect the way this project uses glob. The one code change you might consider is whether you want to sort the results of glob.sync() since v9+ no longer does any sorting itself.
Issue
I'm a gentledev I:
Expected behavior
No deprecation warnings on
npm add svgicons2svgfont
.Actual behavior
Steps to reproduce the behavior
Run
npm add svgicons2svgfont
in an empty project.Debugging informations
node -v
result:npm -v
result:If the result is lower than 16.15.0, there is poor chances I even have a look to it. Please, use the last NodeJS LTS version.
Other notes
It looks like updating
glob
would be straightforward here, the breaking changes in v9 and v10 don't seem to affect the way this project usesglob
. The one code change you might consider is whether you want to sort the results ofglob.sync()
since v9+ no longer does any sorting itself.