From 3256ff1c73672aaacf9df74367f81c28e94b4f5a Mon Sep 17 00:00:00 2001 From: vsavkin Date: Mon, 11 May 2015 12:32:02 -0700 Subject: [PATCH] feat(gulpfuile): added watch.js.dev --- gulpfile.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index 14a3697d02..a3132e239f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -384,6 +384,14 @@ gulp.task('test.unit.js', ['build.js.dev'], function (neverDone) { }); }); +gulp.task('watch.js.dev', ['build.js.dev'], function (neverDone) { + watch('modules/**', function() { + runSequence( + '!broccoli.js.dev' + ); + }); +}); + gulp.task('!test.unit.js/karma-server', function() { karma.server.start({configFile: __dirname + '/karma-js.conf.js'});