提问人:four-eyes 提问时间:11/17/2023 更新时间:11/17/2023 访问量:27
将私有 GitLab Respository 作为 package.json 依赖项,而无需创建部署令牌
Make private GitLab Respository a package.json dependency without creating a deploy token
问:
我有一个私有的 GitLab 存储库,我想将其包含在项目中。 我知道这样做
"my-module": "git+https://<username>:<token>@gitlab.com/my-module"
token
将是具有访问权限的存储库的部署令牌。
但是,通过这样做,我将 硬编码为使每个人都可读。我想知道是否有其他方法。read
token
package.json
由于我可以并且对我的私人 GitLab 表示,已经发生了某种身份验证。当我做一个(或者我可以更改为这样的东西)时,这个身份验证不能用来识别我吗?pull
push
yarn install
npm install
package.json
"my-module": "git+ssh://git@git.<domain>/<username>/my-module"
答: 暂无答案
评论
package.json