From 667d201880a53ffe558658eac8875420c4922547 Mon Sep 17 00:00:00 2001 From: Stuart Thornton Date: Mon, 25 Jan 2016 22:50:16 +0000 Subject: [PATCH 1/2] Bug fix - typo produces error --- gulp/tasks/ghost.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulp/tasks/ghost.js b/gulp/tasks/ghost.js index 37dc139..4e1b298 100644 --- a/gulp/tasks/ghost.js +++ b/gulp/tasks/ghost.js @@ -12,7 +12,7 @@ gulp.task('ghost:start', function (callback) { g.then(function (ghostServer) { ghostServer.start().then(function () { - runSequence('browsersync'); + runSequence('browser-sync'); }); }); From 34f842f6caf6667b61a41c033e91df855c45f3bd Mon Sep 17 00:00:00 2001 From: Stuart Thornton Date: Tue, 26 Jan 2016 23:23:48 +0000 Subject: [PATCH 2/2] Browser-sync typo 2 --- gulp/tasks/watch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulp/tasks/watch.js b/gulp/tasks/watch.js index 20a8282..d7212e8 100644 --- a/gulp/tasks/watch.js +++ b/gulp/tasks/watch.js @@ -1,7 +1,7 @@ var gulp = require('gulp'); gulp.task('ghost', ['ghost:start'], function (callback) { - gulp.watch('app/**/*.hbs', ['browsersync:reload']); + gulp.watch('app/**/*.hbs', ['browser-sync:reload']); callback(); });