We are using private dependencies with the url format <githubname>/<githubrepo>[#<commit-ish>] in package.json. They get installed through ssh, however, when using npm-shrinkwrap the resolve url gets changed to https and thus shrinkwrapping breaks the installation.
Interestingly npm shrinkwrap has the same issue, but I would expect npm-shrinkwrap to fix this.
npm-shrinkwrap directly invokes npm shrinkwrap as part of its execution procedure. If this is broken in npm, it will translate to here as well, so what you describe is actually expected behavior.
We are using private dependencies with the url format
<githubname>/<githubrepo>[#<commit-ish>]
inpackage.json
. They get installed through ssh, however, when usingnpm-shrinkwrap
the resolve url gets changed to https and thus shrinkwrapping breaks the installation.Interestingly
npm shrinkwrap
has the same issue, but I would expectnpm-shrinkwrap
to fix this.