12 lines
No EOL
187 B
JavaScript
12 lines
No EOL
187 B
JavaScript
'use strict';
|
|
|
|
/*
|
|
* > Watcher
|
|
*/
|
|
|
|
import Gulp from 'gulp';
|
|
import Paths from '../paths';
|
|
|
|
Gulp.task('watch', () => {
|
|
Gulp.watch(`${Paths.src}/themes/**/*.json`, ['build:themes']);
|
|
}); |