Current Behavior:
npm ci doesn't run the postinstall script
Expected Behavior:
npm ci should run the postinstall script
Steps To Reproduce:
- create a new folder and put the following minimal package.json in it:
{
"scripts": {
"postinstall": "echo \"it should echo this\""
}
}
- run
npm install
- run
npm ci
- notice how
npm ci DOES NOT run the postinstall script
Environment:
ex.
- OS: Kubuntu 20.04
- Node: 14.13.0
- npm: 7.0.0-rc.0
Current Behavior:
npm cidoesn't run thepostinstallscriptExpected Behavior:
npm cishould run thepostinstallscriptSteps To Reproduce:
{ "scripts": { "postinstall": "echo \"it should echo this\"" } }npm installnpm cinpm ciDOES NOT run thepostinstallscriptEnvironment:
ex.