gulp.task('clean:dist', function(cb) {
  del(['dist']).then(function() {
    cb();
  });
});