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
{{ message }}
This repository has been archived by the owner on Jul 8, 2020. It is now read-only.
Maybe related to gulpjs/gulp#651
Which will also fix #146
I did some debugging and found out that the problem occurs when running the task
inject-all
. https://github.com/mwaylabs/generator-m/blob/master/app/templates/gulp_tasks/injecting.js#L16Here's what happens:
wiredep
task as its dependency which also manipulates theindex.html
.wiredep
is running first, it triggers thechanged
event on theindex.html
which results in a livereload.inject-all
task runs itself after wiredep has finished, no new change event is triggered.Thus the
index.html
does contain the new file, but no livereload is performed and the new files is missing in theindex.html
.I created a new issue with gulp gulpjs/gulp#1074
The text was updated successfully, but these errors were encountered: