Grunt Concurrent无法运行太多任务

时间:2014-01-01 03:14:30

标签: concurrency gruntjs

我正在尝试使用grunt运行多个监视任务,但似乎无法执行。我正在使用grunt并发,但它似乎只运行我指定的一部分任务,只是停止。

以下是我的gruntfile的片段:

concurrent:
  compile:
    tasks: ["watch:app", "watch:html", "watch:images", "watch:lib", "watch:server"]
    options:
      logConcurrentOutput: true

当我运行它时,输出显示:

Running "concurrent:compile" (concurrent) task
Running "watch:images" (watch) task
Waiting...Running "watch:app" (watch) task
Waiting...Running "watch:html" (watch) task
Waiting...Running "watch:lib" (watch) task
Waiting...

出于某种原因,它正在完全跳过我的服务器任务。我最初认为服务器任务设置不正确,但我可以删除一个监视任务,它将正确地运行服务器任务以及其他3个,它不能一次运行所有5个。

我是否不恰当地执行此操作?

1 个答案:

答案 0 :(得分:10)

因此,从文档中,只需声明您想要的任务量。所以在你的情况下:

options:
      logConcurrentOutput: true
      limit: 5

默认情况下,它只使用CPU拥有的内核数量。

  

限制

     

类型:数字默认值:CPU核心数   (require('os')。cpus()。length)至少2

     

限制同时运行的任务数。

https://github.com/sindresorhus/grunt-concurrent