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
The Node v10 compatibility issue in cpy leads up here, in cp-file.
The overview is:
Tests fail in cp-file on Node v10.0.0
This appears to be a result of cp-file's handling of readable streams, in that it waits a tick between when a stream becomes readable and when it starts reading from that stream
This results in the copy promise never resolving, and all copied files being 0 bytes
I've submitted a sketch of a PR: #24 that fixes this bug at the cost of creating directories even when the readable stream fails; would appreciate any guidance for how to achieve both goals.
The text was updated successfully, but these errors were encountered:
Hi Sindre!
The Node v10 compatibility issue in cpy leads up here, in cp-file.
The overview is:
I've submitted a sketch of a PR: #24 that fixes this bug at the cost of creating directories even when the readable stream fails; would appreciate any guidance for how to achieve both goals.
The text was updated successfully, but these errors were encountered: