TheLarkInn / artsy-webpack-tour

Annotations on webpack source code in a pseudo-guided fashion.
524 stars 34 forks source link

BFS or ... DFS ? #12

Open mayankkamboj47 opened 11 months ago

mayankkamboj47 commented 11 months ago

In the image annotated "time to add all deps & bfs graph traversal" and the images right underneath, webpack seems to be doing a DFS because it's just relying on plain old recursion without keeping some sort of a queue in addModuleDependencies(). The annotation says otherwise.