-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
I have a task called "docs" that looks like this:
gulp.task('docs', function() {
return gulp.src('src/*')
.pipe(docco())
.pipe(gulp.dest('docs'))
});It never "finishes". It shows:
$ gulp docs
[23:26:51] Using gulpfile ~/test/gulpfile.js
[23:26:51] Starting 'docs'...
$
It SHOULD show:
$ gulp docs
[23:27:07] Using gulpfile ~/test/gulpfile.js
[23:27:07] Starting 'docs'...
[23:27:07] Finished 'docs' after 22 ms
$
I'm not sure if this is because it doesn't provide an appropriate stream or what. It breaks other tasks by never getting to them when serializing them with docs as a dependency.
Metadata
Metadata
Assignees
Labels
No labels