My github project has an internal library dependency in its project/my-library subdirectory and Angular needs it compiled separately: ng build my-library
before ng build
However, when I point Stackblitz at my github project, it says it can't find my-library. I suppose I could publish my-library to npm and it would work, but I'm still developing it.
Is there a way to get Stackblitz to compile my-library first and then the whole project?