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
Because we have both gulp and browserify here, there's redundancy in our ability to transform (e.g. minify, transpile, inline assets, etc.) our source files: we can use transform streams in gulp, or we can use browserify transforms.
Do we want to decide on a preferred way to do this (aways allowing for exceptions where they make sense)?
The text was updated successfully, but these errors were encountered:
@jflasher I think I have a slight preference for using browserify transforms when possible, the reason being that it theoretically could keep all the js processing in one place, and that if someone wanted to drop gulp or replace it with something else it would be easier.
Because we have both
gulp
andbrowserify
here, there's redundancy in our ability to transform (e.g. minify, transpile, inline assets, etc.) our source files: we can use transform streams in gulp, or we can use browserify transforms.Do we want to decide on a preferred way to do this (aways allowing for exceptions where they make sense)?
The text was updated successfully, but these errors were encountered: