blob: 2a8b55bdeb4d959186daf14f819ebfe2c3dc77cb (
plain)
1
2
3
4
5
6
7
8
|
import {join} from 'path';
import {APP_SRC} from '../config';
export = function watchTest(gulp, plugins) {
return function () {
plugins.watch(join(APP_SRC, '**/*.ts'), () => gulp.start('build.test'));
};
};
|