gpt4 book ai didi

node.js - 从 npm 脚本引用 npm 脚本

转载 作者:搜寻专家 更新时间:2023-10-31 23:59:20 28 4
gpt4 key购买 nike

考虑以下示例 package.json 片段:

{
// ...
"scripts": {
"start": "npm run b -- --watch",
"build": "builder --in src --out dest"
}
// ...
}

在这里,我从 start 运行 build,并给它一个额外的标志。这种方法的问题在于它实际上创建了 NPM 运行的另一个实例。它有效,但它很丑。

是否有一种干净的方法可以从 start 命令引用 build 命令,而无需再次调用 NPM?

最佳答案

Is there a clean way to reference the build command from the start command without having to make another call to NPM?

不是真的。

如果您只是不喜欢 npm 的冗长输出,您可以使用 npm run b -s -- --watch 将其静音。

如果您从一个父脚本调用多个 npm 脚本,您可能需要查看 npm 任务运行器。以下是一些列表:https://github.com/RyanZim/awesome-npm-scripts#task-runners . (免责声明:awesome-npm-scripts 是我的个人项目)

关于node.js - 从 npm 脚本引用 npm 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41556032/

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