From e1a257d17c7a1fbccebdadb53461100b4c8d5f75 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 26 May 2016 19:28:28 +0100 Subject: [PATCH] Spaces --- gulpfile.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 236d1359..36559755 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -16,7 +16,7 @@ var config = { var app = {}; app.css = function (paths, filename) { - gulp.src(paths) + gulp.src(paths) .pipe(plugins.plumber()) .pipe(plugins.if(!config.production, plugins.sourcemaps.init())) .pipe(plugins.sassGlob()) @@ -74,10 +74,10 @@ gulp.task('clean', function () { gulp.task('build', ['clean', 'styles', 'scripts', 'fonts']); gulp.task('watch', function () { - plugins.refresh.listen(); + plugins.refresh.listen(); - gulp.watch('source/assets/' + config.sassPattern, ['styles']); - gulp.watch('source/assets/' + config.jsPattern, ['scripts']); + gulp.watch('source/assets/' + config.sassPattern, ['styles']); + gulp.watch('source/assets/' + config.jsPattern, ['scripts']); }); gulp.task('default', ['build', 'watch']);