mybuddy/gulpfile.js/tasks/watch.js

16 lines
356 B
JavaScript
Raw Normal View History

2017-08-21 20:19:45 +00:00
var gulp = require('gulp');
gulp.task('watch', ['watch:scripts', 'watch:styles']);
gulp.task('watch:scripts', function() {
return gulp.watch([
'**/static/js/**/*.js',
'!babyblotter/static/js/'
], ['scripts:app']);
});
gulp.task('watch:styles', function() {
return gulp.watch('**/static/scss/**/*.scss', ['styles:app']);
});