Gromf
Gromf copied to clipboard
UnCSS
Has anyone successfully incorporated UnCSS that would be willing to share their code snippet in the Gulp File by chance? I've got mine setup and I get no errors, but it also isn't removing the unused CSS.
// // UnCSS Task // ////////////////////////////////////////////////////////////////////// gulp.task('uncss', function() { return gulp.src([ 'assets/scss/_foundation.scss', 'assets/css/main.min.css' ]) .pipe(uncss({ html: [ 'http://dev/site/',
]
}))
.pipe(concat('main.css')) // Concat all css
.pipe(rename({suffix: '.min'}))
.pipe(gulp.dest('assets/css/'))
});
+1