I'm trying to create cahe-buster with gulp-rev and gulp-revReplace, everything works fine when I'm compiling javascript, but the replacement of main css file isn't working as it should, replace always takes the old rev-manifest.json file and not the new - generated by task, I'm assuming that this has something to do with tasks order in gulp series? Because the code is almost the same as for the javascript task, so why is it working diffrently?
This is my gulpfile.js https://github.com/AdamWojda/35_web_dev_chalange/blob/master/Gulpfile.js
Runtime looks like this:
It's possible that
revreplace
from one task rewrite content ofmanifest.json
from second one. jamesknelson in documentation use reverse waywhere each
revision
task execute firstdist:css
anddist:js
and finally rewrite (once)manifest.json
. I recommend to change way of tasks' execution (watch -> revreplace -> generate_js && generate_css
).