Is your feature request related to a problem? Please describe.
I'm always frustrated when using the @discordjs/node-pre-gyp package because it relies on deprecated and unsupported dependencies. Specifically, npmlog@5.0.1 and rimraf@3.0.2 need to be updated as these versions are no longer maintained.
Describe the ideal solution
Update the dependencies in the @discordjs/node-pre-gyp package to use supported and maintained versions:
- Replace
npmlog@5.0.1 with a supported logging package like winston.
- Upgrade
rimraf to version 4 or higher to ensure it is maintained.
Is your feature request related to a problem? Please describe.
I'm always frustrated when using the
@discordjs/node-pre-gyppackage because it relies on deprecated and unsupported dependencies. Specifically,npmlog@5.0.1andrimraf@3.0.2need to be updated as these versions are no longer maintained.Describe the ideal solution
Update the dependencies in the
@discordjs/node-pre-gyppackage to use supported and maintained versions:npmlog@5.0.1with a supported logging package likewinston.rimrafto version 4 or higher to ensure it is maintained.