-
Notifications
You must be signed in to change notification settings - Fork 111
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
Node.js 10 support #142
Node.js 10 support #142
Conversation
Node.js 10 is now LTS and the current node-zookeeper project won't be able to build when running that version. This PR will solve it. Ref: nodejs/node#23159 |
Hi @yfinkelstein! Any chance of getting this pull request reviewed? |
ping @mdlavin |
The code changes look good to me. Can you update the |
Great! I'll set up Travis CI in my fork and will push updates to the configuration when it's ready! |
@mdlavin Done! Travis build is green. |
Looks great. I'll merge and publish a new version |
The new version is published. I'd love if you could confirm the published version works for you |
Running
npm install
fails when using Node version 10. (v10.11.0).This Pull Request fixes the issues with the removed
v8_debug.h
and warnings from npm about old packages.Also, I have replaced the deprecated
ForceSet
withDefineOwnProperty
according to conversations in the Nan repo, issue nodejs/nan#707