We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem: When using the NPM module postinstall scripts do not run.
To reproduce:
package.json
"postinstall": "npm-recursive-install --skip-root"
"postinstall": "echo \"hi\""
npm install
Result: The phrase hi will not echo in console. Expected Result: The phrase hi will echo in console.
hi
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem: When using the NPM module postinstall scripts do not run.
To reproduce:
package.json
, and anotherpackage.json
nested in a folder.package.json
in root the following script:"postinstall": "npm-recursive-install --skip-root"
.package.json
the following script:"postinstall": "echo \"hi\""
npm install
in the root folderResult: The phrase
hi
will not echo in console.Expected Result: The phrase
hi
will echo in console.The text was updated successfully, but these errors were encountered: