-
Notifications
You must be signed in to change notification settings - Fork 12k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Direct template loading in AngularWebpackPlugin results in empty component templates #29728
Comments
Is the suggested change backwards compatible with earlier versions of Webpack? The peer dependency range is currently |
Anything less than webpack 5.62.0 doesn't seem to work because the Angular CLI sets
angular-cli/packages/angular_devkit/build_angular/src/tools/webpack/configs/common.ts Lines 440 to 445 in 3f2ab3a
Changed in 789ddfa which even references the release https://github.com/webpack/webpack/releases/tag/v5.62.0 |
@alexander-akait can hopefully confirm this, but from my testing, using the fix with webpack 5.62.0 works fine. |
This fix will work for any versions, |
@alan-agius4 Any blockers to resolve it or simply no one sent the fix? |
Command
build
Is this a regression?
The previous version in which this bug was not present was
18.3.0
Description
A bugfix in webpack 5.96.0 has broken direct template loading.
webpack/webpack#19235 (comment)
When using webpack 5.96.0 or higher, if you set the
directTemplateLoading
option to false in theAngularWebpackPlugin
, component templates end up being empty.Note: I've said that this is a regression even though technically nothing in the Angular CLI has changed, however if you are updating the Angular CLI regularly, you are probably also updating webpack regularly, so you will encounter this bug.
Minimal Reproduction
Start with this repository: https://github.com/reduckted/repro-webpack-template
This is the setup:
AppComponent
that has a template with the content "hello world".AngularWebpackPlugin.options.directTemplateLoading
to false.When this works, the
AppComponent
's template will end up containing "hello you".Start by cloning the repository:
Switch to the
ng-webpack595
branch (this uses webpack@5.95.0). and build:Open
dist/repro-webpack-template/main.js
and search for "AppComponent_Template". You will see that it looks like this:This works correctly and has replaced "world" with "you".
Now switch to the
ng-webpack598
branch (this uses webpack@5.98.0). and build:Open
dist/repro-webpack-template/main.js
again and search for "AppComponent_Template". You will see that it looks like this:The template is completely empty.
Exception or Error
Your Environment
Anything else relevant?
As @alexander-akait says here: webpack/webpack#19235 (comment)
Thankfully, the fix is really simple, and @alexander-akait even provided an example of how to fix it. ❤️
This:
angular-cli/packages/ngtools/webpack/src/resource_loader.ts
Line 129 in cb078c2
Needs to change to:
The text was updated successfully, but these errors were encountered: