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
'looks-same' saves the diff file using fs.createWriteStream(), passing that path as a parameter. Now, fs.createWriteStream() fails when the directory the path is pointing to doesn't exist - and that's the problem.
the shown error:
ENOENT: no such file or directory, open '...'
possible solutions:
using fsExtra.outputFile() which creates any missing directories. (best IMO)
'looks-same' saves the diff file using fs.createWriteStream(), passing that path as a parameter. Now, fs.createWriteStream() fails when the directory the path is pointing to doesn't exist - and that's the problem.
the shown error:
possible solutions:
initially found here
The text was updated successfully, but these errors were encountered: