From 83c7b1697514452381737214c43389f9a9f2d460 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 5 Jan 2016 23:13:07 +0000 Subject: [PATCH] Rename compass to styles --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 62bc4c2f..2c6d00a1 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']);