I'm trying to up my game when it comes to programming client-side, and I already use Angular for some of my work. I wanted to see how better programmers operate, so I went to check out Angular Material, specifically this page on their coding guidelines.
My problem is it says NOTE: the dist directory is not version controlled
which explains why I don't see it on GitHub. The code they do have is using some kind of framework I am not familiar with, it is in the src
folder and is full of describe
statements that I don't really understand and are not vanilla JavaScript according to this.
Can someone help me understand their workflow and how to analyze their code if I can't get at the dist
directory? I know I could just read the whole library as a release but I wanted to analyze each component before it was tied to the whole package, if that makes sense.
Thank you.