Skip to content
This repository has been archived by the owner on Jun 14, 2020. It is now read-only.

Commit

Permalink
Fixed styling
Browse files Browse the repository at this point in the history
  • Loading branch information
dsebastien committed Mar 11, 2016
1 parent 054233f commit 5557db0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/gulp/tasks/serve-dist.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
});
}
}
Expand Down

0 comments on commit 5557db0

Please sign in to comment.