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

14 lines
372 B
TypeScript
Raw Normal View History

import * as gulp from "gulp";
import * as path from "path";
import Paths from "../../extensions/consts/paths";
/*
* > Watcher
* Watches files and build the themes
*/
export default gulp.task('watch', () => {
2017-07-18 14:43:26 +02:00
// Commented due
// gulp.watch(path.join(Paths.SRC, `./themes/**/*.json`), ['build:themes']);
gulp.watch(path.join(Paths.SRC, `./themes/**/*.json`));
});