Skip to content
This repository was archived by the owner on Mar 26, 2018. It is now read-only.

Commit 091774e

Browse files
committed
fix(gulp): watch needs to take an array as arg
1 parent ea5a9a8 commit 091774e

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

templates/common/root/_gulpfile.js

+4-5
Original file line numberDiff line numberDiff line change
@@ -102,24 +102,23 @@ gulp.task('start:server:test', function() {
102102
});
103103

104104
gulp.task('watch', function () {
105-
106-
$.watch({glob: paths.styles})
105+
$.watch(paths.styles)
107106
.pipe($.plumber())
108107
.pipe(styles())
109108
.pipe($.connect.reload());
110109

111-
$.watch({glob: paths.views.files})
110+
$.watch(paths.views.files)
112111
.pipe($.plumber())
113112
.pipe($.connect.reload());
114113

115-
$.watch({glob: paths.scripts})
114+
$.watch(paths.scripts)
116115
.pipe($.plumber())
117116
.pipe(lintScripts())<% if (coffee) { %>
118117
.pipe($.coffee({bare: true}).on('error', $.util.log))
119118
.pipe(gulp.dest('.tmp/scripts'))<% } %>
120119
.pipe($.connect.reload());
121120

122-
$.watch({glob: paths.test})
121+
$.watch(paths.test)
123122
.pipe($.plumber())
124123
.pipe(lintScripts());
125124

0 commit comments

Comments
 (0)