gpt4 book ai didi

node.js - 通过 npm 自动运行 gulp 任务

转载 作者:IT老高 更新时间:2023-10-28 21:56:46 25 4
gpt4 key购买 nike

我通常通过 npm 运行 gulp,例如在我的 package.json 中

"scripts": {
"test": "gulp test",
"minify": "gulp minify"
}

然后我可以运行诸如

之类的命令
npm run minify

这没关系,但是每次我的 gulpfile 中有新任务时,我都需要将它们添加到脚本部分下的 package.json 中,有没有更好的方法呢?

原因:我只将npm全局安装到我的path,所以所有其他模块都不会污染我的path,所以我需要运行它们通过 npm 脚本

最佳答案

Brian Brennan gave a fantastic suggestion: adding ./node_modules/.bin to your $PATH variable. Then you can run locally installed utilities as long as you’re in the top directory of a project.

来源:Keeping clean .

无需全局安装包即可轻松调用它。请记住,上面的路径应该是前置


或者,从 2.0.0 版本开始,npm 提供了向我们的运行命令传递额外参数的能力。这些参数将简单地附加到您的脚本命令中。

在您的情况下,您的 package.json 中的以下脚本:

"scripts": {
"gulp": "gulp"
},

可以调用为npm run gulp --test,或npm run gulp --minify

关于node.js - 通过 npm 自动运行 gulp 任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27078245/

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