-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
link our internal dependencies rather than installing built versions #24
Comments
it may also be possible to just use composer to clone the git repos directly, rather than treating them as packages |
You may want to take a look at the |
thanks! |
I tried that with One problem on our side, though, is that Core doesn't seem to like it when trying to switch to We might be able to work around that with a filter or something, but I haven't tried yet. |
when one of our repos depends on another (e.g.,
wporg-main-2022
requireswporg-mu-plugins
), the dependencies are installed w/ composer. that makes it clunky to work on both at the same time, though. you have to delete the version composer installed, and then checkout the git repo in its place. when you runcomposer update
, the git repo gets wiped out, including any unpushed changes.there are a few options to solve that problem, similar to
npm link
.The text was updated successfully, but these errors were encountered: