我有一个项目package.json
来加载所有开发依赖项。安装项目后,有没有办法安装 git commit hooks npm install
?
问问题
447 次
1 回答
1
考虑到npm 项目,npm install
它本身只会安装/克隆 git repos,还会解释脚本部分。
{ "scripts" :
{ "install" : "scripts/install.js"
, "postinstall" : "scripts/install.js"
, "uninstall" : "scripts/uninstall.js"
}
}
install
您可以在or步骤中声明一个脚本,该脚本postinstall
会将您的钩子添加到克隆的存储库中。
于 2013-01-16T09:18:16.320 回答