Posts

Showing posts with the label postcss

Gulp, postcss and UnCSS

Image
Clash Royale CLAN TAG #URR8PPP Gulp, postcss and UnCSS I'm trying to clean up my css and use UnCSS with gulp and Postcss. I have this: gulp.task('optim-css', function() { var stream1 = gulp.src(['dev/css/bootstrap.min.css','dev/css/custom.css']) .pipe(postcss([ rucksack() ])) .pipe(postcss(uncss({ html: ['http://localhost/olssonseder/','http://localhost/olssonseder/lyssna/','http://localhost/olssonseder/repertoar/','http://localhost/olssonseder/kontakta/','http://localhost/olssonseder/kontakta/','http://localhost/olssonseder/om-gitarren/'], ignore: [new RegExp('.b-lazy*'), new RegExp('.stickyFooter')] })) ); var stream2 = gulp.src(['dev/css/responsive-nav.css','dev/css/lity.css','dev/css/mp3-player-button.css']) return merge(stream1, stream2) .pipe(concat(...