Open shfshanyue opened 3 years ago
使用 npm script 生命周期中的 npm prepare
,他将会在发包 (publish) 之前以及装包 (install) 之后自动执行。
如果只想在装包之后自动执行,可使用 npm postinstall
例如:
{
"prepare": "npm run build & node packages/husky/lib/bin.js install"
}
vue-cli 一些著名的仓库会使用 patch-package 自动修复 node_modules 中依赖的问题
{
"postinstall": "patch-package"
}
例如: husky