Skip to content

Commit

Permalink
3.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Contra committed Jun 10, 2014
1 parent 9e1f93c commit 7c24de0
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> (http://wearefractal.com/)",
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 7c24de0

Please sign in to comment.