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 working on #2 I've noticed that this plugin doesn't work like existing Gulp plugins, much to its own detriment.
The configuration file is provided via gulp.src, only to have to be read again (path is pulled from the Vinyl object, then require is used).
gulp.src is used internally, per bundle. If a file is included in multiple bundles, it'll need to be read several times.
How the plugin works stunts any efforts to further stabilize and optimize builds in UserFrosting. If the plugin works on files exclusively in the pipeline, then it will be possibly to revise the build process to cut bundling time in half while greatly reducing IO.
The text was updated successfully, but these errors were encountered:
While working on #2 I've noticed that this plugin doesn't work like existing Gulp plugins, much to its own detriment.
gulp.src
, only to have to be read again (path is pulled from the Vinyl object, thenrequire
is used).gulp.src
is used internally, per bundle. If a file is included in multiple bundles, it'll need to be read several times.The text was updated successfully, but these errors were encountered: