-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Description
Context
- OS: Mac OSX 10.12.2 (Sierra)
- Versions:
-
- @ngtools/webpack (?1.2.4 - 1.2.8)
-
- @angular (~2.4.5)
-
- webpack (2.2.0)
note: this is isolated to @ngtools/webpack
Steps to Reproduce
Please see the example application in the example repository. The README for that project includes a summary of the details outlined in this issue as well.
note: while this issue specifically describes a previously undescribed behavior with @ngtools/webpack and DLL bundles, I believe it's a symptom of the same issue as the following issues:
Expected Behavior
Lazy loaded routes are built, regardless of whether Angular is bundled into a DLL
Actual Behavior
Lazy loaded routes are not built when Angular is bundled into a DLL
Details
I spent quite a bit of time digging through Webpack and the @ngtools plugin code to try to track this down (pretty new to both), and I'm fairly certain why this happens makes sense:
- The @ngtools/webpack plugin hooks into the ContextModuleFactory's
after-resolve
plugin event to register the lazy loaded routes with the webpack compiler; - The ContextModuleFactory is only created by the webpack parser implicitly parsing the
@angular/src/linker/system_js_ng_module_factory_loader
. This happens to have a context-requiringSystem.import
statement which will cause the webpack parser to create anImportContextDependency
. The Webpack parser uses theContextModuleFactory
to convert theImportContextDependency
into aContextModule
, and in the process incidentally triggers theafter-resolve
plugin event; - If the Webpack parser never parses the @angular library (as is the case when the @angular library is separately parsed for bundling in a DLL), lazy loaded routes are never registered, compiled, and chunked.
Workarounds
@ngtools/webpack version 1.2.4
Before the addition of the check in plugin.ts released in version 1.2.6 for @angular/core/src/linker, sticking a dummy "contextual" System.import
call into any non-lazily-loaded code would trigger the relevant part of relevant part of plugin.ts
:
declare var System: any;
function DummyObject() {
this.f = {};
System.import(this.f.a + this.f.b);
}
This is demonstrated in the example repository.
@ngtools/webpack version ^1.2.6
I haven't been able to find an acceptable workaround following the addition of the @angular/core/src/linker check in 1.2.6. If you're into really evil things (or are in a huge bind) you can always go into your local @ngtools/webpack plugin.js file and d some snipping, but that's definitely not recommended.
Analysis and Proposed Solution
I'll try my hand at a PR for this, but since I'm still wrapping my head around angular2, webpack, and the @ngtools/webpack plugin I thought I'd put my reasoning down here in case I'm missing something obvious:
Analysis
First, I'm not sure why @ngtools/webpack injecting lazy loaded route dependencies into Webpack depends on Webpack parsing @angulr/core/src/linker
at all. As far as I can tell, @angular/core/src/linker
doesn't actually need to be parsed by the specific webpack compilation in order to build the lazy loaded routes. To be clear, I think the explicit check added in 1.2.6 at least makes it explicit that @angular/core/src/linker is expected to be parsed by the webpack compilation, I'm just not sure why that's a necessary expectation.
Second, I'm not clear on why injecting the lazy loaded route dependencies is dependent on the Webpack compiler ContextModuleFactory
plugin event, although that's probably due to inadequate research on my part. I suspect it just has to do with having a module to which we can hitch the lazy loaded modules as dependencies, but I admit I don't know for sure.
Finally, I don't think the check for @angular/core/src/linker will ever match -- as far as I can tell, result.resource
points to the module that bootstraps the Angular2 application (the project's main.ts
, for example).
Just as reference, here are a couple other issues that I believe would be resolved by a simple refactor to how this is triggered:
Proposed Solution 1 :: Hook Into Webpack Plugin Event
This is probably the best of the two options, although it requires an appropriate Webpack plugin event to hook into. The idea is to entirely remove the need for a System.import
call in some webpack-parsed dependency, and instead find a more appropriate plugin event to hook into. The key requirements would be:
- The plugin event needs to be a standard plugin event that will be executed every build;
- The plugin event needs to be executed at the appropriate time in the compilation (still not entirely sure when that is, but I suspect it's just sometime during webpack parsing;
- The plugin event needs to be available across different supported versions of Webpack;
- The @ngtools/webpack plugin code needs to be defensive enough to avoid issues if there aren't any lazy-loaded routes (I believe this is already true)
I'm really not confident this is possible, though.
Proposed Solution 2 :: Make @ngtools/webpack Inject Dummy ImportContextDependency
If the Webpack compiler's ContextModuleFactory
plugin event really is the best plugin event to hook into, theoretically we should be able to inject a dummy ImportContextDependency into the webpack compiler at the start of the compilation. This has a few benefits:
- absolute certainty that the webpack
ContextModuleFactory
plugin event will be triggered for every build - no implicit dependency on @angular/core/src/linker having a
System.import
call - increased code readability
Sorry if I'm totally off base or working on totally incorrect assumptions with any of this, and thanks in advance for your help!