admin管理员组文章数量:1346283
I am using yarn for my project. My project has a dependency which happened to be a subpackage of larger monorepo maintained by lerna. The subpackage was updated but not published yet and I need that unpublished code. Is there any way to install lerna's subpackage via git url?
Thanks.
I am using yarn for my project. My project has a dependency which happened to be a subpackage of larger monorepo maintained by lerna. The subpackage was updated but not published yet and I need that unpublished code. Is there any way to install lerna's subpackage via git url?
Thanks.
Share Improve this question asked Mar 2, 2018 at 7:35 Max KomarychevMax Komarychev 2,8561 gold badge24 silver badges33 bronze badges 3-
Did you ever find an answer to this? I have the same issue except in my case the subpackage hasn't been updated - I cloned it and updated myself, but can't figure out how to install my version (
yarn add git://github./MY-USERNAME/REPONAME
doesn't work, neither doesyarn add git://github./MY-USERNAME/REPONAME/packages/PACKAGE-NAME
). – Chris Boon Commented Apr 2, 2018 at 17:12 - Unfortunately no, I didn’t find solution of that. – Max Komarychev Commented Apr 2, 2018 at 20:13
- Possible duplicate of npm install package from github repo subfolder – jjbskir Commented Mar 12, 2019 at 15:42
2 Answers
Reset to default 2If your questions is "How do I install a sub-package via git?" then that would be a duplicate of this question, which it sounds like you kind of can do, but it does not look fun. But npm on its own does not support installs of git subdirectories.
A better solution would be either to do a release of the package with a npm beta
tag and target it directly in your package.json. Or to set up the lerna project locally and run npm link
to use it directly.
Try GitPkg: https://gitpkg.vercel.app/.
Using sub folders of a repo as yarn/npm dependencies made easy
本文标签: javascriptInstall package from lernamanaged monorepo via git URLStack Overflow
版权声明:本文标题:javascript - Install package from lerna-managed monorepo via git URL - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743827118a2545845.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论