WearyMonkey / ngtemplate-loader

Include AngularJS templates in the Webpack bundle and preload the template cache.
MIT License
238 stars 78 forks source link

Export as harmony module #66

Open onemanclapping opened 7 years ago

onemanclapping commented 7 years ago

With Webpack 3 we can now take advantage of ModuleConcatenationPlugin but only for harmony modules: https://github.com/webpack/webpack/blob/master/lib/optimize/ModuleConcatenationPlugin.js#L42

To take full advantage of this (and it really makes a big difference on bootstrap) we need ngtemplates-loader to output harmony modules too.

I'm new to webpack so sorry in advance for anything in the code!