-
-
Notifications
You must be signed in to change notification settings - Fork 488
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
Replace mkdirp with builtin recursive flag #391
Conversation
In node 10.12 mkdir got new recursive flag which provides the same functionality as mkdirp. See here https://nodejs.org/api/fs.html#fs_fs_mkdir_path_options_callback Also node 10 got builtin promisified `fs` utilities. See here https://nodejs.org/api/fs.html#fs_fs_promises_api
|
Thanks! |
Closing and reopening the pull request triggers a new |
I just do empty commits in such cases |
Released in v4.2.0 |
In node 10.12 mkdir got new recursive flag which provides the same
functionality as mkdirp.
See here https://nodejs.org/api/fs.html#fs_fs_mkdir_path_options_callback
Also node 10 got builtin promisified
fs
utilities.See here https://nodejs.org/api/fs.html#fs_fs_promises_api