gpt4 book ai didi

javascript - 在 gulp 中分割任务

转载 作者:行者123 更新时间:2023-12-03 07:05:45 25 4
gpt4 key购买 nike

现在我有多个 gulpfiles。每次我开始工作时,我都需要运行多个“gulp --gulpfile path/to/another-gulpfile.js”。我可以用一个命令来运行它吗?我尝试了“gulp --gulpfile gulpfile1.js gulpfile2.js gulpfile3.js”,但它不起作用。

编辑:

  "scripts": {
"gulp": "gulp --gulpfile bin/gulp-tasks/config.js && gulp --gulpfile bin/gulp-tasks/deploy.js"
}

我尝试使用 npm 脚本运行多个 gulp 实例,但看起来只有第一个指定的 gulpfile 中的观察程序正在工作。简单的 console.logging 显示,第二个 gulpfile 甚至没有启动。它们在单独启动时确实可以完美工作。

最佳答案

有一种方法可以尝试将 gulp 命令放入 npm package.json

scripts: {
gulp: gulp --gulpfile path/to/gulpfile1.js && gulp --gulpfile path/to/gulpfile2.js
}

然后你可以运行一个命令npm run gulp;

另一种方式,您可以引用这篇文章了解更多详细信息 http://macr.ae/article/splitting-gulpfile-multiple-files.html

关于javascript - 在 gulp 中分割任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36834217/

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