In the following case,
gulp.task('watch', ['clean'], function (done) {
seq(
'ts:test',
[
'ts:watch',
'karma:watch'
],
done
);
});
this parallel process works fine with karma-espower-preprocessor but this plugin doesn't.
[
'ts:watch',
'karma:watch'
],
If another process is removed, it works fine.
https://github.com/falsandtru/spica/blob/master/gulpfile.js