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'); }); }); 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(); });