Releases: floatdrop/gulp-watch
Releases · floatdrop/gulp-watch
v5.0.0
v4.3.11
v4.1.1
v4.1.0
v4.0.0
In short:
- Migration from gaze to chokidar - this will improve stability and responsiveness of gulp-watch
- Events on directory creation is now filtered out
- By default all files (that matched globs) will be emitted on first run with
add
event close()
is now not necessary (if you don't usepersistent
option)- Event names changed (
added
->add
,modified
->change
anddeleted
->unlink
) - All logging now hidden in
verbose
option - Lots of issues should be fixed
v3.0.0
v2.0.0
Before 2.0.0
version there was a bug in gulp-batch
- it does not prevent tasks to execute in same time. In 2.0.0
version of gulp-batch
was bumped.
This can cause your watch tasks to hang, if you do not calling done
in callback or returning Stream
/Promise
from it.
v1.0.0
- watch is not emmiting files at start - read «Starting tasks on events» and «Incremental build» for workarounds.
- watch is now pass through stream - which means that streaming files into watch will not add them to gaze. It is very hard to maintain, because watch is not aware about
glob
, from which this files come from and can not re-create vinyl object properly without maintaining cache of thebase
properties of incoming files (yuck). - array of tasks is not accepted as callback - this was not working anyway, but rationale behind it - requiring gulp and calling internal method start is bad. This feature will become more clear, when gulp 4.0.0 will be released with new task system. Read «Starting tasks on events» for right way to do it.