vsc-material-theme/.gulp/tasks/watcher.js
2017-05-10 09:37:48 +02:00

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']);
});