gpt4 book ai didi

concurrency - Grunt Concurrent 不能运行太多任务

转载 作者:行者123 更新时间:2023-12-01 08:30:05 31 4
gpt4 key购买 nike

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

这是我的 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 个任务。

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

最佳答案

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

options:
logConcurrentOutput: true
limit: 5

默认情况下,它只使用您的 CPU 有多少个内核。

limit

Type: Number Default: Number of CPU cores (require('os').cpus().length) with a minimum of 2

Limit of how many tasks that are run concurrently.



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

关于concurrency - Grunt Concurrent 不能运行太多任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20865228/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com