2018-05-07 16:23:17 +02:00
|
|
|
import * as gulp from 'gulp';
|
|
|
|
import * as path from 'path';
|
2018-04-20 20:07:36 +02:00
|
|
|
|
2019-01-31 21:35:51 +01:00
|
|
|
import Paths from './../../src/consts/paths';
|
2018-04-20 20:07:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* > Watcher
|
|
|
|
* Watches files and build the themes
|
|
|
|
*/
|
|
|
|
export default gulp.task('watch', () => {
|
|
|
|
// Commented due
|
|
|
|
// gulp.watch(path.join(Paths.SRC, `./themes/**/*.json`), ['build:themes']);
|
2018-05-07 16:23:17 +02:00
|
|
|
gulp.watch(path.join(Paths.SRC, './themes/**/*.json'));
|
|
|
|
});
|