每当我运行npm install时,它运行npm run postinstall。如何添加自定义安装后脚本?所以在运行npm install后运行npm run postinstall2?
答案 0 :(得分:1)
您可以使用postinstall
&&
的多个脚本
{
"scripts": {
"script1": "",
"script2": "",
"postinstall": "script1 && script2"
}
}
这适用于Windows和Unix(Linux,macOS)终端。