Closed nikravi closed 9 years ago
can I ask which version of pre-git it is trying to install?
project B has 1.2.11, and it's working fine. Oh, maybe I can require pre-git as 'devDependency' now it's 'dependency' and it's installed on the parent objects.
probably should be devDependency in general, I will check of course, but I never had problems requiring project that required pre-git
yep, moved to devDependency and solved the issue. Thanks
I have a dependency project (e.g. B) that uses
pre-git
. Requiring the project B in project A, and doing npm install, fails with this error:I think it's due to the
"postinstall": "node install",
line inpre-git
. I guess it should be"postinstall": "./node install",
or similar. Can you verify?Thank you!