Skip to content

Commit fefd6d0

Browse files
clydinfilipesilva
authored andcommitted
perf(@angular-devkit/build-angular): use esbuild as a CSS optimizer for component styles
The stylesheet optimization pipeline now uses `esbuild` for component stylesheets. The usage of `esbuild` provides noticeable build time improvements as well as, on average, smaller output sizes. `esbuild` currently does not support stylesheet sourcemaps. However, since the Angular CLI does not support component stylesheet sourcemaps when optimizing, this lack of support is problematic. Global stylesheets will continue to use `cssnano` as an optimizer due to sourcemaps being required for global stylesheets even when optimizing. When `esbuild` adds stylesheet sourcemap support, global stylesheets may be transitioned to `esbuild` as well.
1 parent 2c9a6f0 commit fefd6d0

File tree

1 file changed

+27
-5
lines changed
  • packages/angular_devkit/build_angular/src/webpack/configs

1 file changed

+27
-5
lines changed

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

+27-5
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,9 @@ export function getStylesConfig(wco: WebpackConfigOptions): webpack.Configuratio
277277
const extraMinimizers = [];
278278
if (buildOptions.optimization.styles.minify) {
279279
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
280-
const minimizerOptions = {
280+
const esbuild = require('esbuild') as typeof import('esbuild');
281+
282+
const cssnanoOptions = {
281283
preset: [
282284
'default',
283285
{
@@ -299,20 +301,40 @@ export function getStylesConfig(wco: WebpackConfigOptions): webpack.Configuratio
299301
);
300302

301303
extraMinimizers.push(
304+
// Component styles use esbuild which is faster and generates smaller files on average.
305+
// esbuild does not yet support style sourcemaps but component style sourcemaps are not
306+
// supported by the CLI when style minify is enabled.
302307
new CssMinimizerPlugin({
303308
// Component styles retain their original file name
304309
test: /\.(?:css|scss|sass|less|styl)$/,
305-
parallel: false,
306310
exclude: globalBundlesRegExp,
307-
minify: [CssMinimizerPlugin.cssnanoMinify],
308-
minimizerOptions,
311+
parallel: false,
312+
minify: async (data: string) => {
313+
const [[sourcefile, input]] = Object.entries(data);
314+
const { code, warnings } = await esbuild.transform(input, {
315+
loader: 'css',
316+
minify: true,
317+
sourcefile,
318+
});
319+
320+
return {
321+
code,
322+
warnings:
323+
warnings.length > 0
324+
? await esbuild.formatMessages(warnings, { kind: 'warning' })
325+
: [],
326+
};
327+
},
309328
}),
329+
// Global styles use cssnano since sourcemap support is required even when minify
330+
// is enabled. Once esbuild supports style sourcemaps this can be changed.
331+
// esbuild stylesheet source map support issue: https://github.com/evanw/esbuild/issues/519
310332
new CssMinimizerPlugin({
311333
test: /\.css$/,
312334
include: globalBundlesRegExp,
313335
parallel: maxWorkers,
314336
minify: [CssMinimizerPlugin.cssnanoMinify],
315-
minimizerOptions,
337+
minimizerOptions: cssnanoOptions,
316338
}),
317339
);
318340
}

0 commit comments

Comments
 (0)