8000 Releases · gulpjs/gulp · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
8000

Releases: gulpjs/gulp

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

3.7

01 Jun 02:53
Compare
Choose a tag to compare
3.7

3.7.0

  • update vinyl-fs to remove BOM from UTF8 files
  • add --tasks-simple flag for plaintext task listings
  • updated autocomplete scripts to be simpler and use new --tasks-simple flag
  • added support for transpilers via liftoff 0.11 and interpret
    • just npm install your compiler (coffee-script for example) and it will work out of the box

deprecated gulp.run and gulp.env

26 Jan 01:36
Compare
Choose a tag to compare

More CLI options and stuff

3.4

17 Jan 10:36
Compare
Choose a tag to compare
3.4

Switched to vinyl-fs + new CLI features

0