You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While looking at this code and that one in the context of reading directories for determining which ones to create bundles from, it seems that we could probably simplify some of this logic:
this seems to browse each subdirectory multiple times, once from the filepath.Walk loop and once from shouldCreateBundleFromThisPath logic. Can we do better?
consider using WalkDir, supposedly more efficient than Walk.
While looking at this code and that one in the context of reading directories for determining which ones to create bundles from, it seems that we could probably simplify some of this logic:
filepath.Walk
loop and once fromshouldCreateBundleFromThisPath
logic. Can we do better?WalkDir
, supposedly more efficient thanWalk
.Related to this comment.
The text was updated successfully, but these errors were encountered: