From 7c24de03a73deff456e36deebc11e5b18bbd8169 Mon Sep 17 00:00:00 2001 From: Contra Date: Tue, 10 Jun 2014 00:57:40 -0700 Subject: [PATCH] 3.8.0 --- CHANGELOG.md | 18 ++++++++++++++++++ package.json | 4 ++-- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 923b988f1..bce1ab1cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # gulp changelog +# 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! + +```js +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.0 - update vinyl-fs to remove BOM from UTF8 files diff --git a/package.json b/package.json index 9e0d93719..5518c96d9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "gulp", "description": "The streaming build system", - "version": "3.7.0", + "version": "3.8.0", "homepage": "http://gulpjs.com", "repository": "gulpjs/gulp", "author": "Fractal (http://wearefractal.com/)", @@ -35,7 +35,7 @@ "pretty-hrtime": "^0.2.0", "semver": "^2.2.1", "tildify": "^0.2.0", - "vinyl-fs": "^0.2.0" + "vinyl-fs": "^0.3.0" }, "devDependencies": { "coveralls": "^2.7.0",