-
Notifications
You must be signed in to change notification settings - Fork 207
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
repak.js is broken on newer node installs #69
Comments
There were 2 separate issues: * the specified version of uses os.tmpDir() instead of os.tmpdir() * the package doesn't work anymore, and should be replaced by the built-in This fixes inolen#69.
There were 2 separate issues: * the specified version of uses os.tmpDir() instead of os.tmpdir() * the package doesn't work anymore, and should be replaced by the built-in This fixes inolen#69.
There are other problems deeper in.
Requires image magick and ogg encoder. |
running it results in errors that look like this:
due to the
temp
package being too old and trying to callos.tmpDir()
instead of the neweros.tmpdir()
.Fixing that locally then results in further errors:
The
execSync
package is no longer supported, and can be replaced with built-inchild_process.execSync
.The text was updated successfully, but these errors were encountered: