Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Does not "finish" #10

Open
jacwright opened this issue May 29, 2015 · 1 comment
Open

Does not "finish" #10

jacwright opened this issue May 29, 2015 · 1 comment

Comments

@jacwright
Copy link

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.

@brendandahl
Copy link

It seems files that aren't processed by docco aren't being "sunk". For me, adding a filter ("src/**.js") fixes the issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants