Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. gulp.task('css', function(){
  2. gulp.src('css/*.css')
  3. .pipe(concat('master.min.css'))
  4. .pipe(uncss({
  5. html: ['*.html'],
  6. js: ['*.js']
  7. }))
  8. .pipe(minify())
  9. .pipe(gulp.dest('css'));
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement