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
Post a Comment