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
The order of gulp streams is not guaranteed (see gulpjs/gulp#687, and here).
This can sometimes cause gulp-concat to produce a different file (which in turn causes gulp-rev to produce a different hash), even when the source files are unchanged.
The long term solution for this is obviously to move away from concatenating scripts, and to start using modules and bundler such as webpack.
As a short term fix, an attempt was made to use gulp-sort to reorder the streams, however this was rolled back because it broke the build.
The text was updated successfully, but these errors were encountered:
The order of gulp streams is not guaranteed (see gulpjs/gulp#687, and here).
This can sometimes cause
gulp-concat
to produce a different file (which in turn causesgulp-rev
to produce a different hash), even when the source files are unchanged.The long term solution for this is obviously to move away from concatenating scripts, and to start using modules and bundler such as
webpack
.As a short term fix, an attempt was made to use
gulp-sort
to reorder the streams, however this was rolled back because it broke the build.The text was updated successfully, but these errors were encountered: