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

11 lines
No EOL
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']);
});