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
copy: {
main: {
files: [
{src: ['something/**'], dest: 'output/'},
{src: ['anotherthing/**'], dest: 'output/'},
],
options: {
process: function (content, srcpath) {
return content; // to keep it short lets just return content as is
},
},
},
if an .mp3 file is passed there the process function breaks the file :( i could think of it as an EOF or encoding problem but it is a bit uncomfy to dig around and see the where and which causes the problem.
Do we have a quickie fix for that issue? or someone face the same thing I am having?
I tried so far
putting process everywhere in the structure --> only worked in options inside main but for example not inside one of the jsons inside files array
return contect directly and not returning anything
Thanks in advance <3
The text was updated successfully, but these errors were encountered:
if an .mp3 file is passed there the process function breaks the file :( i could think of it as an EOF or encoding problem but it is a bit uncomfy to dig around and see the where and which causes the problem.
Do we have a quickie fix for that issue? or someone face the same thing I am having?
I tried so far
Thanks in advance <3
The text was updated successfully, but these errors were encountered: