Skip to content

Commit b059fc7

Browse files
committed
fix(@angular-devkit/build-angular): warn when components styles sourcemaps are not generated when styles optimization is enabled
With this change we add a warning to inform the users that sourcemaps are not generated when both styles sourcemaps and optimization are enabled. This is because component style sourcemaps are inline which would drastically increase the bundle size. Closes #22834 (cherry picked from commit c83aaed)
1 parent 4cb27b8 commit b059fc7

File tree

1 file changed

+18
-12
lines changed
  • packages/angular_devkit/build_angular/src/webpack/configs

1 file changed

+18
-12
lines changed

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

+18-12
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import {
3535

3636
// eslint-disable-next-line max-lines-per-function
3737
export function getStylesConfig(wco: WebpackConfigOptions): Configuration {
38-
const { root, buildOptions } = wco;
38+
const { root, buildOptions, logger } = wco;
3939
const extraPlugins: Configuration['plugins'] = [];
4040

4141
extraPlugins.push(new AnyComponentStyleBudgetChecker(buildOptions.budgets));
@@ -93,7 +93,7 @@ export function getStylesConfig(wco: WebpackConfigOptions): Configuration {
9393
tailwindPackagePath = require.resolve('tailwindcss', { paths: [wco.root] });
9494
} catch {
9595
const relativeTailwindConfigPath = path.relative(wco.root, tailwindConfigPath);
96-
wco.logger.warn(
96+
logger.warn(
9797
`Tailwind CSS configuration file found (${relativeTailwindConfigPath})` +
9898
` but the 'tailwindcss' package is not installed.` +
9999
` To enable Tailwind CSS, please install the 'tailwindcss' package.`,
@@ -137,16 +137,22 @@ export function getStylesConfig(wco: WebpackConfigOptions): Configuration {
137137
return optionGenerator;
138138
};
139139

140-
// load component css as raw strings
141-
const componentsSourceMap = !!(
142-
cssSourceMap &&
143-
// Never use component css sourcemap when style optimizations are on.
144-
// It will just increase bundle size without offering good debug experience.
145-
!buildOptions.optimization.styles.minify &&
146-
// Inline all sourcemap types except hidden ones, which are the same as no sourcemaps
147-
// for component css.
148-
!buildOptions.sourceMap.hidden
149-
);
140+
let componentsSourceMap = !!cssSourceMap;
141+
if (cssSourceMap) {
142+
if (buildOptions.optimization.styles.minify) {
143+
// Never use component css sourcemap when style optimizations are on.
144+
// It will just increase bundle size without offering good debug experience.
145+
logger.warn(
146+
'Components styles sourcemaps are not generated when styles optimization is enabled.',
147+
);
148+
componentsSourceMap = false;
149+
} else if (buildOptions.sourceMap.hidden) {
150+
// Inline all sourcemap types except hidden ones, which are the same as no sourcemaps
151+
// for component css.
152+
logger.warn('Components styles sourcemaps are not generated when sourcemaps are hidden.');
153+
componentsSourceMap = false;
154+
}
155+
}
150156

151157
// extract global css from js files into own css file.
152158
extraPlugins.push(new MiniCssExtractPlugin({ filename: `[name]${hashFormat.extract}.css` }));

0 commit comments

Comments
 (0)