UNPKG

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) 327 B
/* jshint node: true */ /* cms:data Task Copy data files into CMS directory */ 'use strict'; module.exports = function() { var source = this.opts.config.build.data, dest = this.opts.config.integrate.data; return this.gulp.src([ this.opts.path.join(source, '**/*') ]) .pipe(this.gulp.dest(dest)); };