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

Doesn't parallel work with another process #16

Open
falsandtru opened this issue Apr 26, 2018 · 1 comment
Open

Doesn't parallel work with another process #16

falsandtru opened this issue Apr 26, 2018 · 1 comment
Labels

Comments

@falsandtru
Copy link

In the following case,

gulp.task('watch', ['clean'], function (done) {
  seq(
    'ts:test',
    [
      'ts:watch',
      'karma:watch'
    ],
    done
  );
});

this parallel process works fine with karma-espower-preprocessor but this plugin doesn't.

    [
      'ts:watch',
      'karma:watch'
    ],

If another process is removed, it works fine.

    [
      'karma:watch'
    ],

https://github.com/falsandtru/spica/blob/master/gulpfile.js

@watilde watilde added the bug label May 6, 2018
@watilde
Copy link
Member

watilde commented May 6, 2018

That sounds like a bug. I will find my time to work on this. I'd appreciate if you could give me any idea about why that happens. Thanks!

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

No branches or pull requests

2 participants