Skip to content

Doesn't parallel work with another process #16

@falsandtru

Description

@falsandtru

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions