codeigniter4-patches icon indicating copy to clipboard operation
codeigniter4-patches copied to clipboard

Support Monorepos

Open sanchawebo opened this issue 6 months ago • 0 comments

This is not an issue but more a suggestion/feature request:

Problem: I have a monorepo with the following structure (shortened for clarity):

ROOT/
├── vendor/
│   └── codeigniter4/
│       └── framework/
├── APP_1/
│   └── app/
│       ├── Commands/
│       ├── Config/
│       ├── Controllers/
│       ├── Database/
│       ├── Libraries/
│       ├── Models/
│       └── Views/
├── APP_2/
│   └── app/
│       ├── Config/
│       ├── Controllers/
│       ├── Models/
│       └── Views/
└── APP_3/
    └── app/
        ├── Config/
        ├── Controllers/
        ├── Models/
        └── Views/

So obviously this fails when running patches. My question is would it be possible to add eg CLI params or a config which defines paths to tatter/patches to update ci4-applications in sub-directories?

sanchawebo avatar Jul 30 '25 09:07 sanchawebo