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.
yarn add git://github.com/MY-USERNAME/REPONAME
doesn't work, neither doesyarn add git://github.com/MY-USERNAME/REPONAME/packages/PACKAGE-NAME
).