我查看了this回答,其中显示了如何从私有git(子)文件夹安装npm模块。当我这样做时,这适用于我:
npm install git+ssh://git@github.com:myaccount/myprivate.git
,我的主应用程序可以调用私有模块中的代码。
但当有人更新github.com:myaccount/myprivate.git
位置的模块时,我希望我的主应用程序能够接收这些更新的更新。
我想做的是:
npm install
作为一种解决方法,我必须:
npm install git+ssh://git@github.com:myaccount/myprivate.git
答案 0 :(得分:1)
您可以使用git commit哈希来跟踪您的更改:
npm i --save git+ssh://git@github.com:myaccount/myprivate.git#b0f2009
或标签
npm i --save git+ssh://git@github.com:myaccount/myprivate.git#v0.0.2