-
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
Recursive fs.rmdir / fs.rm #806
Comments
This is no longer experimental in v14.13.1: nodejs/node#35171 However, in response to nodejs/node#34278, the loose Instead, an Docs: https://nodejs.org/api/fs.html#fs_fs_rm_path_options_callback I don't think it's wise to use Also, potentially consider removing |
Is it? It's just no longer the default. From what I see it's still there with |
@fregante It's the behavior on |
Fixes #806 Technically a breaking change since this removes the undocumented ability to pass options to remove*()
Fixes #806 Technically a breaking change since this removes the undocumented ability to pass options to remove*()
Node core has added an experimental
recursive
option tofs.rmdir
in nodejs/node#29168; first released in v12.10.0.Docs: https://nodejs.org/api/fs.html#fs_fs_rmdir_path_options_callback
I'm hesitant to use this as long as it's experimental in Node core, but just opening an issue to track this.
The text was updated successfully, but these errors were encountered: