diff --git a/gulp/tasks/watch.js b/gulp/tasks/watch.js index 17bcbf0..1b8038e 100644 --- a/gulp/tasks/watch.js +++ b/gulp/tasks/watch.js @@ -1,13 +1,14 @@ var gulp = require('gulp'), path = require('path'), - gutil = require('gulp-util'); + gutil = require('gulp-util'), + bundle = require('../util/bundle'); gulp.task('watch', function () { gulp.watch(paths.scripts, ['jshint']) .on('change', logChanges); - return bundle.watch(connect.reload); + return bundle.watch(); }); function logChanges(event) {