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

Async tasks are skipped #55

Closed
mgcrea opened this issue Aug 17, 2014 · 1 comment
Closed

Async tasks are skipped #55

mgcrea opened this issue Aug 17, 2014 · 1 comment

Comments

@mgcrea
Copy link

mgcrea commented Aug 17, 2014

Use case

Any async plugin

Reproducible test case

    .pipe(usemin({
      js: [through.obj(function(file, encoding, next) {
        setTimeout(function() {
          file.contents = new Buffer('foo();');
          next(null, file);
        });
      })]
    }))
@zont
Copy link
Owner

zont commented Jan 12, 2015

Fixed

@zont zont closed this as completed Jan 12, 2015
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

Successfully merging a pull request may close this issue.

2 participants