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
An outputrelativePath of ../../../../../ will be truncated to ../../../, so anything more than 3 levels won't work.
Does not seem like a problem with usemin, but probably with gulp-concat.
You may observe this behaviour if you add a console.info(file) to this bit in pipeline.js while having an outputrelativePath set to say: ../../../../../
tasks.push(through.obj(function(file,enc,streamCallback){streamCallback(null,file);push(file);console.info(file);// Note how outputrelativePath loses depth before this}));
The text was updated successfully, but these errors were encountered:
An outputrelativePath of ../../../../../ will be truncated to ../../../, so anything more than 3 levels won't work.
Does not seem like a problem with usemin, but probably with gulp-concat.
You may observe this behaviour if you add a console.info(file) to this bit in pipeline.js while having an outputrelativePath set to say: ../../../../../
The text was updated successfully, but these errors were encountered: