This message was deleted.
# general
s
This message was deleted.
w
Currently no - passing a component to
dependsOn
currently has no impact on the deployment. We are considering making
dependsOn
of a component implicitly depend on all children of that component. Fair to assume that's what you expected to happen?
In the meantime, you have to pick off the children you depend on explicitly and pass those to
dependsOn
.
s
Yes, that’s pretty much what I was expecting to happen.
Yup, looks like picking out the children to the top level and making a dependency out of them should work.
I guess I can have the component export an array of all of its resources right now, and then have the dependent component chain off that
👍 1