-
Notifications
You must be signed in to change notification settings - Fork 2
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
Removing fs-extra from packages with async node:fs support #33
Comments
this will be a big one. thankfully, fs-extra isn't bloated but you are right it could be removed entirely from many projects we will have to look up the |
Be aware that fs-extra is not just polyfill, it adds extra functionality like emptyDir, and so which does not have direct replacement, but of course can be replaced with similar code as fs-extra. |
you're right its a pretty useful package for sure. we should only really move projects away from it for the stuff that has native equivalents in their supported node versions (e.g. recursive readdir, async methods, etc) |
Top 100 dependents that still use
|
The change to |
|
If I did my math right, that sums up to 7040 GB (and 6440.48 GB without |
In newer versions of Node, theres a promises API for the file system which has a lot of overlap with https://www.npmjs.com/package/fs-extra
The text was updated successfully, but these errors were encountered: