vsc-material-theme/.gulp/tasks/watcher.ts
Mattia Astorino 2f4f56f40d
unlock files
2018-04-20 20:07:36 +02:00

14 lines
No EOL
372 B
TypeScript

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', () => {
// Commented due
// gulp.watch(path.join(Paths.SRC, `./themes/**/*.json`), ['build:themes']);
gulp.watch(path.join(Paths.SRC, `./themes/**/*.json`));
});