如何添加自定义NPM安装后脚本?

时间:2016-07-28 18:36:36

标签: node.js npm

每当我运行npm install时,它运行npm run postinstall。如何添加自定义安装后脚本?所以在运行npm install后运行npm run postinstall2?

1 个答案:

答案 0 :(得分:1)

您可以使用postinstall

链接来自&&的多个脚本
{
  "scripts": {
    "script1": "",
    "script2": "",
    "postinstall": "script1 && script2"
  }
}

这适用于Windows和Unix(Linux,macOS)终端。