gpt4 book ai didi

npm - 如何配置 npm-watch?

转载 作者:行者123 更新时间:2023-12-02 00:36:15 25 4
gpt4 key购买 nike

我不知道如何配置 npm-watch 我不明白如何从文档(自述文件)中使用它。

在根项目中,我有一个包含一些 .js 文件的脚本文件夹。在脚本文件夹中发生任何更改后,我想调用 npm build,如何使用 npm-watch 执行此操作?如何设置 npm-watch?

最佳答案

documentation说:

The keys of the "watch" config should match the names of your "scripts"

这意味着在你的情况下,package.json 文件应该有:

{
"watch": {
"build": "script/*.js"
},
"scripts": {
"build": "npm build",
"watch": "npm-watch"
}
}

关于npm - 如何配置 npm-watch?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49409629/

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