UNPKG

frontend-tasks

Version:

Frontend Tasks is a wrapper around gulp for most of the normal use cases for simple and modern frontend development

13 lines (10 loc) 288 B
import gulp from 'gulp'; import stylelint from 'stylelint'; import postcss from 'gulp-postcss'; const lintCSS = (options) => { return () => { return gulp.src(options.src).pipe(postcss([stylelint])); }; }; lintCSS.description = `lint styles using stylelint`; export default lintCSS;