I have three packages:
A, depends onCB, depends onCC
When using lerna run build, C builds before A and B (good!)
But when I start a watch task lerna run watch, C never completes and therefor A and B dont get watched.
Using lerna run watch --parallel starts A, B and C at the same time but A and B both throw error because they cant find the dist folder from C (which C just deleted before rebuilding).
Is there any way to start watch tasks but still keep the order of dependencies like run normally does? Or at least delay some others?
