You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using createWriteStream from graceful-fs will causes a memory leak. This was found while using the node-fs-extra@11.2.0 package which calls node-graceful-fs directly.
Replacing the graceful-fs createWriteStream with the node native fs.createWriteStream solves the issue.
The text was updated successfully, but these errors were encountered:
Tested on node v20.9.0
Using
createWriteStream
from graceful-fs will causes a memory leak. This was found while using the node-fs-extra@11.2.0 package which calls node-graceful-fs directly.Replacing the graceful-fs
createWriteStream
with the node nativefs.createWriteStream
solves the issue.The text was updated successfully, but these errors were encountered: