Skip to content

Commit 12dc418

Browse files
committed
fix(gulp): update watch task variable and function calls
1 parent ad9c020 commit 12dc418

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: app/templates/gulpfile.babel(gulp).js

+2-2
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ gulp.task('start:server', () => {
317317
});
318318

319319
gulp.task('watch', () => {
320-
var testFiles = _.union(paths.client.test, paths.server.test);
320+
var testFiles = _.union(paths.client.test, paths.server.test.unit, paths.server.test.integration);
321321

322322
plugins.livereload.listen();
323323

@@ -335,7 +335,7 @@ gulp.task('watch', () => {
335335

336336
plugins.watch(paths.client.scripts) //['inject:js']
337337
.pipe(plugins.plumber())<% if(filters.babel || filters.coffee) { %>
338-
.pipe(transpile())
338+
.pipe(transpileClient())
339339
.pipe(gulp.dest('.tmp'))<% } %>
340340
.pipe(plugins.livereload());
341341

0 commit comments

Comments
 (0)