diff --git a/gulpfile.js b/gulpfile.js index 62bc4c2f7..2c6d00a10 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -9,7 +9,7 @@ var config = { sassPattern: './sass/**/*.scss' }; -gulp.task('compass', function () { +gulp.task('styles', function () { gulp.src('./sass') .pipe(plugins.compass({ config_file: './config.rb', @@ -28,7 +28,7 @@ gulp.task('images', function () { }); gulp.task('watch', function () { - gulp.watch(config.sassPattern, ['compass']); + gulp.watch(config.sassPattern, ['styles']); }); gulp.task('default', ['watch']);