To speed up my web application load time, I wish to concatenate all my vendors (3rd party packages) javascript files. For instance, jQuery, Angular, and many bower packages.
Some packages are scoping their "use strict" and some are not. I am worried about concatenating: As far as I understand, If I use a package that isn't written so good, and some other package forced a "use strict" globally, this may cause bugs.
Does a safe way exist to bundle them all together?
Thanks.