为任何本地依赖项运行postinstall挂钩

时间:2018-02-26 08:00:06

标签: node.js npm

如果我们有这个:

{
  "scripts":{
    "postinstall":"./scripts/postinstall.sh"
  }
}

然后,只要我们执行

,这个postinstall挂钩就会运行

$ npm install

在命令行

我想知道的是,当我们安装像这样的依赖项时,是否有办法运行postinstall挂钩

$ npm install x

我们可以使用一些NPM钩子吗?

0 个答案:

没有答案