gulpfile - don't need `init` anymore

master
Sindre Sorhus 2014-06-26 00:14:19 +02:00
parent 7848faeefd
commit 61fb1a6e2f
1 changed files with 3 additions and 3 deletions

View File

@ -116,11 +116,11 @@ gulp.task('clean', del.bind(null, ['.tmp', 'dist']));
// Watch Files For Changes & Reload
gulp.task('serve', function () {
bs = browserSync.init({
bs = browserSync({
notify: false,
server: {
baseDir: ['app', '.tmp']
},
notify: false
}
});
gulp.watch(['app/**/*.html'], reload);