UNPKG

generator-globeproject

Version:
22 lines (18 loc) 460 B
var gulp = require('gulp'); var config = require('../config'); gulp.task('watch', function() { // watch for changes to html gulp.watch([ 'common/html/*', config.baseDir() + '/**/*.html' ], ['html']); // watch for changes to sass gulp.watch([ 'common/css/*', config.baseDir() + '/css/*' ], ['sass']); // watch for changes to lodash templates gulp.watch([ config.baseDir() + '/js/templates/*.template' ], ['compileLodashTemplates']); });