Fork me on GitHub
#component
<
2016-09-07
>
seancorfield00:09:05

Do you mean "a function that returns the dependencies for a specific (sub) component"?

donaldball01:09:26

No, dependency-graph gives you that

donaldball01:09:32

I mean something along these lines:

donaldball01:09:22

I commonly have this pattern where I have a big complete system, but I sometimes only want to start a subset of it; just the bits necessary to work with one or more high-level components

seancorfield01:09:30

Ah, gotcha… I tend to have a system creation function for each subsystem, that lists the dependencies, and would let me start just that subsystem — since I use that in the test suite for that subsystem.