通过yarn install添加具有私有依赖项的私有javascript github包

时间:2020-06-18 19:28:31

标签: javascript react-native github npm yarnpkg

我目前正在尝试使用yarn install从github添加两个带有SSH密钥的私有软件包。我无法以.git结尾安装第一个软件包,但可以通过删除标签来安装它。不幸的是,依赖于第一个软件包的第二个软件包在尝试添加第二个软件包时遇到了问题。

error Couldn't find package "...@git@github.com:.../...git" required by "...@git+https://github.com    
/.../...git" on the "npm" registry.
info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this
command.

我的package.json看起来像这样-

"1st": "git+https://github.com/1st"
"2nd": "git+https://github.com/2nd.git"

有没有解决此问题的方法?我希望避免在可能的情况下直接编辑存储库。

0 个答案:

没有答案