dominictarr / npmd

MIT License
450 stars 37 forks source link

does not build compiled modules sometimes #65

Open dominictarr opened 10 years ago

dominictarr commented 10 years ago

I think it happens when you install multiple modules?

duralog commented 10 years ago

hey dude, I ran into this today. you can reproduce this by doing npmd install bignum I have noticed that the error is because of two reasons.

  1. that library does not have "gypfile": true in its package.json
  2. the install script is never run.. so it won't actually build the module in either case.

I think this error can be solved by making sure the install script is run afterward.

cheers man