-
Notifications
You must be signed in to change notification settings - Fork 774
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
ExperimentalWarning: The fs.promises API is experimental (Node.js 10.1.0) #577
Comments
This was referenced May 9, 2018
Closed
Proposed fix: #578 |
4 tasks
Related Node PR: nodejs/node#20504. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
fs-extra
version: 5.0.0Hello! First of all, thank you for the great work on maintaining fs-extra 🙇
With Node.js 10.1.0 recently released, we started to see the following warning in our test suite:
It turns out the
fs
module provides a new propertypromises
which triggers the warning on the first access.You can try it out yourself:
On Node.js version 10.0.0:
Can we fix lib/fs/index.js to not emit ExperimentalWarning until the experimental API is actually accessed?
The text was updated successfully, but these errors were encountered: