- file.contents streams are no longer paused coming out of src
- dest now passes files through before they are empty to fix passing to multiple dests
- Bug fix - we didn't have any CLI tests
- Update dependencies for bug fixes
- autocomplete stuff in the completion folder
- File object is now vinyl
- .watch() is now glob-watcher
- Fix CLI -v when no gulpfile found
- gulp-util updated
- Logging moved to CLI bin file
- Will cause double logging if you update global CLI to 3.2 but not local
- Will cause no logging if you update local to 3.1 but not global CLI
- Drop support for < 0.9
- Move isStream and isBuffer to gulp-util
- Move file class to gulp-util
- Ability to pass multiple globs and glob negations to glob-stream
- Breaking change to the way glob-stream works
- File object is now a class
- file.shortened changed to file.relative
- file.cwd added
- Break out getStats to avoid nesting
- Major code reorganization
- Breaking change to the way options are passed to glob-stream
- Introduce new File object to ease pain of computing shortened names (now a getter)
- Moved stuff to gulp-util
- Quit exposing createGlobStream (just use the glob-stream module)
- More logging
- Prettier time durations
- Tons of documentation changes
- gulp.trigger(tasks...) as a through stream
- src buffer=false fixed for 0.8 and 0.9 (remember to .resume() on these versions before consuming)
- CLI completely rewritten
- Colorful logging
- Uses local version of gulp to run tasks
- Uses findup to locate gulpfile (so you can run it anywhere in your project)
- chdir to gulpfile directory before loading it
- Correct exit codes on errors
- silent flag added to gulp to disable logging
- Fixes to task orchestration (3rd party)
- Better support for globbed directories (thanks @robrich)
- Can specify buffer=false on src streams to make file.content a stream
- Can specify read=false on src streams to disable file.content
- Can specify run callback
- Can specify task dependencies
- Tasks can accept callback or return promise
gulp.verbose
exposes run-time internals
- Specify dependency versions
- Updated docs
- Rename .files() to .src() and .folder() to .dest()
- Initial Release