Choose Framework

gulp

gulpjs

The streaming build system

Developed by gulpjs (Organization)

Primary language: JavaScript

Last release

June 10, 2014

Last Pushed

October 17, 2017

JavaScript (26.35 kB), Shell (1.52 kB)

Home Page Github page

Open Issues

21

Forks

21

Github Stars

27692

Watchers

1201

Release Notes

contra contra on June 10, 2014 for vinyl-fs update

3.8.0

This is now possible!

gulp.src('lib/*.js')
  .pipe(uglify())
  .pipe(gulp.src('styles/*.css'))
  .pipe(gulp.dest(function(file){
    // i dont know, you can do something cool here
    return 'build/whatever';
  }));