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

12 lines
187 B
JavaScript
Raw Normal View History

2017-05-10 09:37:48 +02:00
'use strict';
/*
* > Watcher
*/
import Gulp from 'gulp';
import Paths from '../paths';
Gulp.task('watch', () => {
Gulp.watch(`${Paths.src}/themes/**/*.json`, ['build:themes']);
});