标签: yarnpkg lifecycle-hook
当我创建位于node_modules/.hooks/install的脚本,然后使用npm(例如,使用npm i debug)安装新软件包时,将调用我的脚本。
node_modules/.hooks/install
npm i debug
但是,在使用yarn(yarn add debug)时,永远不会调用此脚本。
yarn add debug
为什么Yarn会忽略我的安装钩子脚本,如何强制它调用它?
这很奇怪,因为npm确实会调用它,如this page所述。