Suppose my gulp task decides to do nothing -- what should I return?
gulp.task 'maybe_transform_files', ->
if check_something()
gulp.src('src')
.pipe transform_files()
.pipe gulp.dest('target')
else
return something
In other situations, I might use the done() callback, but I don't think I can use it here, where I might return a stream.