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
I worked around this with a filter that filtered out map files:
constremoveMapFiles=filter(['**/*','!maps/**')],{restore: true});// gulp stuff here....pipe(removeMapFiles)// remove map files from the stream because we don't want them written to the markup.pipe(revReplace()).pipe(removeMapFiles.restore)
@akatakritos - thanks, that solved my issue. But you have some small issues in example
constremoveMapFiles=filter(['**/*','!maps/**'],{restore: true});// gulp stuff here....pipe(removeMapFiles)// remove map files from the stream because we don't want them written to the markup.pipe(revReplace()).pipe(removeMapFiles.restore())``
rev-replace will replace original
with
Here is my gulp task:
The text was updated successfully, but these errors were encountered: