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.
21 lines (14 loc) • 330 B
JavaScript
/* jshint node: true */
/*
build:data Task
Copy data files into build directory
*/
;
module.exports = function() {
var source = this.opts.config.source.data,
dest = this.opts.config.compile.data;
return this.gulp.src([
this.opts.path.join(source, '**/*')
])
.pipe(this.gulp.dest(dest));
};