-
Notifications
You must be signed in to change notification settings - Fork 7
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
Building Scrypt fails on Node 12 #5
Comments
I have contacted the author and this package is no longer maintained. |
@ellis2323 So it should be marked as deprecated with suggested alternatives. |
@filips123 Yes, sure but i'm not the author. |
Note that scrypt is available in Node 10.x. No need to use a package: |
Problem is that this package is currently used by many other packages. It should probably be updated to only use wrapper around Node.js 10 scrypt functions if they are available. |
Is there a maintainer here ? |
Please do a 1.x release of scrypt.js with code as-is. Anyone that depends on |
FYI Workaround: use {
// in package.json
// …
"scripts": {
// …
"preinstall": "npx npm-force-resolutions"
},
"resolutions": {
"scrypt.js": "0.3.0"
},
// …
} Also might need to make sure |
@axic another option that might help speed up adoption of |
typical abandonware, very cool! |
is there anybody out there.... |
With Node 12, the underlying
scrypt
package fails to build. I was going to post my issue there, but that package's README states that it is a deprecated module and recommends other alternatives.Being that this current repo depends on
scrypt
so heavily, I figured it'd make the most sense to post an issue here.Do note that I have tried this with Node 11 and it built just fine.
How to test
Run the following under Node v12:
npm init -y
npm install scrypt.js
Notice that
scrypt
fails to build.Full log dump
The text was updated successfully, but these errors were encountered: