On Thu, Aug 22, 2013 at 2:29 PM, Adam Crabtree <[email protected]> wrote: > Currently, the only way to accomplish this that I know of, would be to run a > private npm repo that uses our private version for forever-agent and falls > back on the public request, which feels like overkill. > > Is there a simpler solution?
Fork it on github, and use github specs in your package deps: "forever-agent": "mr-crabtree/forever-agent", Assuming that's your github id. Also using a git submodule would work. Also you could do a non-github fork, and put a specific git url into your dep. Probably other ways, too, if the above don't strike your fancy. Check out npm docs on the format for the right-hand-side of a package dependency spec. Cheers, Sam -- -- 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.
