Skip to content

Commit 3d71c63

Browse files
alan-agius4filipesilva
authored andcommitted
fix(@angular-devkit/build-angular): fix issue were @media all causing critical CSS inling to fail
Workaround for Critters as it doesn't work when `@media all {}` is minified to `@media {}`. Closes #20804
1 parent 5203415 commit 3d71c63

File tree

3 files changed

+166
-66
lines changed

3 files changed

+166
-66
lines changed

packages/angular_devkit/build_angular/src/browser/specs/inline-critical-css-optimization_spec.ts

-66
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
1+
/**
2+
* @license
3+
* Copyright Google LLC All Rights Reserved.
4+
*
5+
* Use of this source code is governed by an MIT-style license that can be
6+
* found in the LICENSE file at https://angular.io/license
7+
*/
8+
9+
import { buildWebpackBrowser } from '../../index';
10+
import { BASE_OPTIONS, BROWSER_BUILDER_INFO, describeBuilder } from '../setup';
11+
12+
describeBuilder(buildWebpackBrowser, BROWSER_BUILDER_INFO, (harness) => {
13+
describe('Option: "inlineCritical"', () => {
14+
beforeEach(async () => {
15+
await harness.writeFile('src/styles.css', 'body { color: #000 }');
16+
});
17+
18+
it(`should extract critical css when 'inlineCritical' is true`, async () => {
19+
harness.useTarget('build', {
20+
...BASE_OPTIONS,
21+
optimization: {
22+
scripts: false,
23+
styles: {
24+
minify: true,
25+
inlineCritical: true,
26+
},
27+
fonts: false,
28+
},
29+
styles: ['src/styles.css'],
30+
});
31+
32+
const { result } = await harness.executeOnce();
33+
34+
expect(result?.success).toBe(true);
35+
harness
36+
.expectFile('dist/index.html')
37+
.content.toContain(
38+
`<link rel="stylesheet" href="styles.css" media="print" onload="this.media='all'">`,
39+
);
40+
harness.expectFile('dist/index.html').content.toContain(`body{color:#000;}`);
41+
});
42+
43+
it(`should extract critical css when 'optimization' is unset`, async () => {
44+
harness.useTarget('build', {
45+
...BASE_OPTIONS,
46+
styles: ['src/styles.css'],
47+
optimization: undefined,
48+
});
49+
50+
const { result } = await harness.executeOnce();
51+
52+
expect(result?.success).toBe(true);
53+
harness
54+
.expectFile('dist/index.html')
55+
.content.toContain(
56+
`<link rel="stylesheet" href="styles.css" media="print" onload="this.media='all'">`,
57+
);
58+
harness.expectFile('dist/index.html').content.toContain(`body{color:#000;}`);
59+
});
60+
61+
it(`should extract critical css when 'optimization' is true`, async () => {
62+
harness.useTarget('build', {
63+
...BASE_OPTIONS,
64+
styles: ['src/styles.css'],
65+
optimization: true,
66+
});
67+
68+
const { result } = await harness.executeOnce();
69+
70+
expect(result?.success).toBe(true);
71+
harness
72+
.expectFile('dist/index.html')
73+
.content.toContain(
74+
`<link rel="stylesheet" href="styles.css" media="print" onload="this.media='all'">`,
75+
);
76+
harness.expectFile('dist/index.html').content.toContain(`body{color:#000;}`);
77+
});
78+
79+
it(`should not extract critical css when 'optimization' is false`, async () => {
80+
harness.useTarget('build', {
81+
...BASE_OPTIONS,
82+
styles: ['src/styles.css'],
83+
optimization: false,
84+
});
85+
86+
const { result } = await harness.executeOnce();
87+
88+
expect(result?.success).toBe(true);
89+
harness.expectFile('dist/index.html').content.not.toContain(`<style`);
90+
});
91+
92+
it(`should not extract critical css when 'inlineCritical' is false`, async () => {
93+
harness.useTarget('build', {
94+
...BASE_OPTIONS,
95+
styles: ['src/styles.css'],
96+
optimization: {
97+
scripts: false,
98+
styles: {
99+
minify: false,
100+
inlineCritical: false,
101+
},
102+
fonts: false,
103+
},
104+
});
105+
106+
const { result } = await harness.executeOnce();
107+
108+
expect(result?.success).toBe(true);
109+
harness.expectFile('dist/index.html').content.not.toContain(`<style`);
110+
});
111+
112+
it(`should extract critical css when 'inlineCritical' when using 'deployUrl'`, async () => {
113+
harness.useTarget('build', {
114+
...BASE_OPTIONS,
115+
deployUrl: 'http://cdn.com/',
116+
optimization: {
117+
scripts: false,
118+
styles: {
119+
minify: true,
120+
inlineCritical: true,
121+
},
122+
fonts: false,
123+
},
124+
styles: ['src/styles.css'],
125+
});
126+
127+
const { result } = await harness.executeOnce();
128+
expect(result?.success).toBe(true);
129+
harness
130+
.expectFile('dist/index.html')
131+
.content.toContain(
132+
`<link rel="stylesheet" href="http://cdn.com/styles.css" media="print" onload="this.media='all'">`,
133+
);
134+
harness.expectFile('dist/index.html').content.toContain(`body{color:#000;}`);
135+
});
136+
137+
it(`should extract critical css when using '@media all {}' and 'minify' is set to true`, async () => {
138+
harness.useTarget('build', {
139+
...BASE_OPTIONS,
140+
styles: ['src/styles.css'],
141+
optimization: {
142+
scripts: false,
143+
styles: {
144+
minify: true,
145+
inlineCritical: true,
146+
},
147+
fonts: false,
148+
},
149+
});
150+
151+
await harness.writeFile('src/styles.css', '@media all { body { color: #000 } }');
152+
153+
const { result } = await harness.executeOnce();
154+
expect(result?.success).toBe(true);
155+
harness
156+
.expectFile('dist/index.html')
157+
.content.toContain(
158+
`<link rel="stylesheet" href="styles.css" media="print" onload="this.media='all'">`,
159+
);
160+
harness.expectFile('dist/index.html').content.toContain(`body{color:#000;}`);
161+
});
162+
});
163+
});

packages/angular_devkit/build_angular/src/webpack/configs/styles.ts

+3
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,9 @@ export function getStylesConfig(wco: WebpackConfigOptions): webpack.Configuratio
287287
calc: false,
288288
// Disable CSS rules sorted due to several issues #20693, https://github.com/ionic-team/ionic-framework/issues/23266 and https://github.com/cssnano/cssnano/issues/1054
289289
cssDeclarationSorter: false,
290+
// Workaround for Critters as it doesn't work when `@media all {}` is minified to `@media {}`.
291+
// TODO: Remove once they move to postcss.
292+
minifyParams: !buildOptions.optimization.styles.inlineCritical,
290293
},
291294
],
292295
};

0 commit comments

Comments
 (0)