I have a module with a bunch of bundled dependencies (bundledDependencies in package.json). I've noticed that if the bundled dependency is native (compiled/node-gyp) it will be rebuild when I install my module. However, it the bundled dependency has a dependency on a native module this will not be rebuild when installed.
A --- bundles --> B In this case B is build when installing A. A --- bundles --> B --- depends on --> C C is not build when installing A. I'm not sure if doing an "npm rebuild<https://npmjs.org/doc/cli/npm-rebuild.html>" after installing A will rebuild C. -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
