Skip to content
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

fix(web): fix styles vendorChunk in webpack 5 #6822

Closed
wants to merge 6 commits into from
Closed

fix(web): fix styles vendorChunk in webpack 5 #6822

wants to merge 6 commits into from

Conversation

markogresak
Copy link
Contributor

@markogresak markogresak commented Aug 23, 2021

Current Behavior

The styles bundle is not included in the dist/.../index.html when using Webpack 5.

Expected Behavior

All of the files listed in build.styles are bundled and included in the dist/.../index.html file.

Related Issue(s)

Fixes #6819

@vercel
Copy link

vercel bot commented Aug 23, 2021

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/nrwl/nx-dev/CC7LfhYXgCGkRJ3X9A8UMKVcpBq5
✅ Preview: https://nx-dev-git-fork-markogresak-fix-styles-bundle-nrwl.vercel.app

@nx-cloud
Copy link

nx-cloud bot commented Aug 23, 2021

Nx Cloud Report

CI is running for commit e08b534.

📂 Click to track the progress, see the status, the terminal output, and the build insights.


Sent with 💌 from NxCloud.

@@ -5,6 +5,8 @@
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
// TODO: import from 'webpack' in Nx 13
import type { Module, ModuleGraph, ChunkGraph, Chunk } from 'webpack-5';
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I did not want to introduce problems by changing to webpack@5, so I am adding this alias as

yarn add -D 'webpack-5@npm:webpack@^5.51.1'

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this would cause a problem if the user does not want webpack 5 installed. For now I think it's better to leave things untyped until Nx 13 when we remove webpack 4.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jaysoo it's just a type for now (@types/webpack), would that be a problem too?

I have pushed 3b129c9 to remove the dependency and changed to stub types. This should make it easier to swtich the types for Nx 13.

const moduleName = module.nameForCondition
? module.nameForCondition()
: '';
test: (
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The test logic is the same, the only difference for isWebpack5 is the chunks condition. If preferred, we can revert the commit 283fcc2 to have separate function for isWebpack5.

: '';
// TODO(jack): Remove in Nx 13
const chunks = isWebpack5
? context.chunkGraph.getModuleChunks(module)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was going for the same condition as the webpack 4.
I'm not very familiar with the webpack API, so I am not sure if there is a better way to achieve this. I found that there's the chunksFilter config option, but it's called only with the chunk value, so I'm not sure if it would work.

@@ -5,6 +5,8 @@
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
// TODO: import from 'webpack' in Nx 13
import type { Module, ModuleGraph, ChunkGraph, Chunk } from 'webpack-5';
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this would cause a problem if the user does not want webpack 5 installed. For now I think it's better to leave things untyped until Nx 13 when we remove webpack 4.

@jaysoo
Copy link
Member

jaysoo commented Sep 3, 2021

Closing in favor of #6925

I realized what the problem was. There should never have been a split chunks config for the main styles entry chunk. My merged PR fixes this and the minification issues. :)

@jaysoo jaysoo closed this Sep 3, 2021
@markogresak markogresak deleted the fix-styles-bundle branch September 3, 2021 18:31
@github-actions
Copy link

This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Mar 20, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Styles bundle is not included when using Webpack 5
2 participants