vsc-material-theme/.gulp/tasks/watcher.ts

11 lines
201 B
TypeScript
Raw Normal View History

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