Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jhouedanou
Created September 27, 2017 11:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhouedanou/b47fbb583902b5098d0f1f4a8aa96a1b to your computer and use it in GitHub Desktop.
Save jhouedanou/b47fbb583902b5098d0f1f4a8aa96a1b to your computer and use it in GitHub Desktop.
gulp.task('watch', function() {
gulp.watch('./sass/**/*.scss', ['sass']);
gulp.watch('images/src/*', ['images']);
gulp.watch('images/sprite/*', ['sprite']);
});
gulp.task('default', ['sprite', 'sass', 'js', 'script', 'images', 'browser-sync', 'watch']);
gulp.task('build',['sprite', 'sass', 'js', 'script', 'images']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment