11 lines
201 B
TypeScript
11 lines
201 B
TypeScript
|
/*
|
||
|
* > Watcher
|
||
|
*/
|
||
|
|
||
|
import * as Gulp from 'gulp';
|
||
|
|
||
|
import Paths from '../paths';
|
||
|
|
||
|
export var taskWatch = Gulp.task('watch', () => {
|
||
|
Gulp.watch(`${Paths.src}/themes/**/*.json`, ['build:themes']);
|
||
|
});
|