I have multiple html files under app/, which is why I'm using gulp.src("app/*.html"). When using rev() in the css or js array, usemin only processes and copies over the first html file (alphabetically). When removing rev(), they all get processed and copied over.
I have multiple html files under app/, which is why I'm using
gulp.src("app/*.html")
. When usingrev()
in thecss
orjs
array, usemin only processes and copies over the first html file (alphabetically). When removingrev()
, they all get processed and copied over.Any idea what's going on?