-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade node-gyp to v.8.0.0 to prevent deprecation errors #25
Comments
Because our support contract in npm includes node-gyp@8 requires |
https://github.com/nodejs/node-gyp/blob/161c2353ef5b562f4acfb2fd77608fcbd0800fc0/package.json#L37 Seems like we could file a bug there to remove the use of the recursive flag for mkdir. |
npm/run-script currently uses an older version of
node-gyp
that in turn has a dependency on the deprecated packagerequest
. By upgrading to the newly released version 8.0.0 ofnode-gyp
(which now usesfetch
instead), we can get rid of many deprecation messages stemming from any packages dependent on run-script.The text was updated successfully, but these errors were encountered: