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 support #8

Open
mariusGundersen opened this issue Jan 27, 2015 · 2 comments
Open

async support #8

mariusGundersen opened this issue Jan 27, 2015 · 2 comments

Comments

@mariusGundersen
Copy link

It would be great if this had async support, for example:

gulp.src('*.js')
.pipe(map(function(content, filename, done){
  doSomethingAsync(content, function(err, result){
    done(result);
  });
}))
.pipe(gulp.dest('output'))
@battlesnake
Copy link

Agreed!

@nelsonpecora
Copy link

I eventually forked this project and added the async support it, here.

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.

3 participants