universal-web-template
Version:
An universal web proejct template - let you quickly set up a project using Handlebars, sass and ReactJS for front-end templating. It can be adopted with most modern CMS.
22 lines (15 loc) • 406 B
JavaScript
/* jshint node: true */
/*
watch:styles Task
Watch changes of scss files
*/
;
module.exports = function() {
var gulp = this.gulp,
runSequence = this.opts.runSequence;
return this.opts.watch([
this.opts.path.join(this.opts.config.source.sass, '**/*.scss')
], function(){
runSequence('compile:styles', ['serve:reload', 'build:styles'], 'integrate:styles');
});
};