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.

22 lines (15 loc) 348 B
/* jshint node: true */ /* test:audit Task Audit script code */ 'use strict'; var webstandards = require('gulp-webstandards'), plumber = require('gulp-plumber'); module.exports = function() { return this.gulp.src([ this.opts.path.join(this.opts.config.compile.root, '/**/*'), ]) .pipe(plumber()) .pipe(webstandards()); };