From f80f3b5a9e53eb1f7a797c30c8fef541fef2d6de Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Fri, 8 Jan 2016 09:36:38 +0000 Subject: [PATCH] A couple of small fixes after #15 --- gulpfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 8cbea855..4f33c31b 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -10,7 +10,7 @@ var config = { sassPattern: './sass/**/*.scss', production: !!plugins.util.env.production, sourceMaps: !plugins.util.env.production, - liveReload: !plugins.util.env.production, + liveReload: !plugins.util.env.production }; var app = {}; @@ -25,12 +25,12 @@ app.addStyle = function(paths, filename) { .pipe(plugins.if(config.sourceMaps, plugins.sourcemaps.write('.'))) .pipe(gulp.dest(config.assetsDir + '/css')) .pipe(plugins.if(config.liveReload, livereload())); -} +}; app.copy = function(srcFiles, outputDir) { gulp.src(srcFiles) .pipe(gulp.dest(outputDir)); -} +}; gulp.task('fonts', function () { // Copy fonts from bower_components into source/asset/fonts.