Create grid styling for related posts module

- Add default teaser image
- Disable image watch gulp task
This commit is contained in:
Michael Rose
2016-03-18 15:07:02 -04:00
parent 17a6afcd35
commit eb2f3d052a
29 changed files with 86 additions and 26 deletions

View File

@@ -87,13 +87,12 @@ gulp.task('images', function () {
/**
*
* Default task
* - Runs scss, scripts and image tasks
* - Watches for scss, script, and image changes
* - Runs scss, scripts, and image tasks
* - Watches for scss and script changes
*
**/
gulp.task('default', ['css', 'jslint', 'scripts', 'images'], function () {
gulp.task('default', ['css', 'jslint', 'scripts'], function () {
gulp.watch('assets/scss/**/*.scss', ['css']);
gulp.watch('assets/js/_*.js', ['jslint']);
gulp.watch(['!assets/js/**/*_.js', 'assets/js/plugins/**/*.js', 'assets/js/vendor/**/*.js'], ['scripts']);
gulp.watch('images/*', ['images']);
});