javascript - npm update from private git repo on BitBucket -


i have node module hosted on bitbucket. have linked this:

"dependencies": {     "my_module": "git+https://<team-api-key>:x-oauth-basic@bitbucket.org/team_name/repo_name.git" } 

this works fine initial npm install, npm update not pull latest commit on master branch. basically, npm update nothing regardless of changes repo. according this thread on npm github page, issue fixed , closed.

i have tried adding #commit-ish information url , still won't update either explicit commit reference or latest commit in branch reference.

i have tried updating version number of module, , npm update still ignores it.

i using npm v2.5.1. doing wrong?


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -