From 5557db0c3722e4084439fb16cab6a43c17998e96 Mon Sep 17 00:00:00 2001 From: Sebastien Date: Fri, 11 Mar 2016 08:27:06 +0100 Subject: [PATCH] Fixed styling --- src/gulp/tasks/serve-dist.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/gulp/tasks/serve-dist.js b/src/gulp/tasks/serve-dist.js index 6f27292..f2f172d 100644 --- a/src/gulp/tasks/serve-dist.js +++ b/src/gulp/tasks/serve-dist.js @@ -48,13 +48,13 @@ class ServeDistTaskLoader extends AbstractTaskLoader { }); }; - gulp.task("wait-a-bit", "Wait a second...", () => { - return gulp.src('./package.json'). - pipe(wait(1500)) + gulp.task("wait-a-bit", "Wait a second...", () =>{ + return gulp.src("./package.json"). + pipe(wait(1500)); }); - gulp.task("serve-dist", "Build and serve the production version (i.e., 'dist' folder contents", () =>{ - return runSequence([ "default" ], ["wait-a-bit"], startBrowserSync); // here we need to ensure that all the other tasks are done before we start BrowserSync + gulp.task("serve-dist", "Build and serve the production version (i.e., dist folder contents", () =>{ + return runSequence([ "default" ], [ "wait-a-bit" ], startBrowserSync); // here we need to ensure that all the other tasks are done before we start BrowserSync }); } }