Move path transformation logic into function similiar to gulp.src #11
Labels
enhancement
Issue enhances existing functionality or development processes.
Milestone
The path transformation logic is great for reducing IO, but comes at the expense of increased RAM usage since it introduces a clog in the stream. We can resolve this by creating our own version of
gulp.src
that performs this work during the read phase, which will allow us to perform processing of bundles in a more stream like fashion, namely;_transform
invocation that ultimately triggered it.Final result should be less used RAM and less read operations.
The text was updated successfully, but these errors were encountered: