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 native fs.createWriteStream solves the issue.
Tested on node v20.9.0
Using
createWriteStreamfrom 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
createWriteStreamwith the node nativefs.createWriteStreamsolves the issue.