Skip to content

Instantly share code, notes, and snippets.

@zmts
Created October 5, 2016 15:31
Show Gist options
  • Save zmts/a60b2c8632a2659c4e934e270d3b1a58 to your computer and use it in GitHub Desktop.
Save zmts/a60b2c8632a2659c4e934e270d3b1a58 to your computer and use it in GitHub Desktop.
Gulp not cleared .tmp after a file change (generator-fountain-webapp)
I fix it by adding 'clean' task in 'inject' task
gulp.task('inject', gulp.series('clean', gulp.parallel('styles', 'scripts'), 'inject'));
After any changes in js files .tmp folder is cleaning
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment