Using reflinks when possible #7630
-
I have a project that copies several GB of static assets on each build. What would it take to get Parcel to output reflinks instead when possible? Node.js offers |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yes, that would be great. Currently streams are used pretty heavily (and cause an additional slowdown). So once they are replaced with regular (There's currently also a "bug" in Node where reflinks aren't supported on macOS: libuv/libuv#2578) |
Beta Was this translation helpful? Give feedback.
Yes, that would be great. Currently streams are used pretty heavily (and cause an additional slowdown). So once they are replaced with regular
fs.copyFile
calls, we could simply add that flag to use reflinks where possible.(There's currently also a "bug" in Node where reflinks aren't supported on macOS: libuv/libuv#2578)