Skip to content

Releases: gulpjs/gulp

v3.8.10

21 Apr 16:56
Compare
Choose a tag to compare
3.8.10

v3.8.9

21 Apr 16:56
Compare
Choose a tag to compare

Readme

v3.8.8

21 Apr 16:56
Compare
Choose a tag to compare
3.8.8

v3.8.7

21 Apr 16:56
Compare
Choose a tag to compare

Docs

  • return stream & fix syntax highlighting (761398e)

v3.8.6

21 Apr 16:56
Compare
Choose a tag to compare

Docs

  • Added server example with BrowserSync (96cf09c)

v3.8.5

21 Apr 16:56
Compare
Choose a tag to compare
3.8.5

v3.8.4

21 Apr 16:56
Compare
Choose a tag to compare
3.8.4

v3.8.3

21 Apr 16:56
Compare
Choose a tag to compare
3.8.3

v3.8.1

21 Apr 16:56
Compare
Choose a tag to compare

docs

  • add missing 'new' operator for thrown error (2dea7f9)

readme

  • fix a not being where it shouldnt be (4f02601)
  • make logo link to website (1f5ea50)

vinyl-fs update

10 Jun 07:59
Compare
Choose a tag to compare

3.8.0

  • update vinyl-fs
    • gulp.src is now a writable passthrough, this means you can use it to add files to your pipeline at any point
    • gulp.dest can now take a function to determine the folder

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';
  }));