Suppose I want to create a collection of packages, for example, related to cooking. I will have a main package called cooking, and then I want some cooking packages:
- cooking mexican
- cooking indian
- cooking tai
Each of them will use cooking. And perhaps more general packages will be created in the future. How can I configure this structure in github so that you are not forced to create a separate repo for each, but still allow client projects to pull just the packages they need.
Can a package refer to a path in a github package?
On the pub dependencies page, they show how you can link to git:
dependencies: cooking: git: url: git:
But ideally, I want:
dependencies: cooking-indian: git: url: git://github.com/munificent/cooking.git ref: some-branch
Is there a way to have one github repeater with N packages in which you can select only a subset through pub?
source share