Skip CSS Optimization like JS Optimization

Created on 2 February 2024, about 1 year ago

Problem/Motivation

JS skips optimization here: https://git.drupalcode.org/project/drupal/-/blob/11.x/core/lib/Drupal/Co...

But CSS does not: https://git.drupalcode.org/project/drupal/-/blob/11.x/core/lib/Drupal/Co...

Steps to reproduce

When a JS library is `minified: true` it will skip optimization. When a CSS library is `minified: true` it will not skip optimization.

Proposed resolution

Add the same logic from `\Drupal\Core\Asset\JsCollectionOptimizerLazy::optimizeGroup` to `\Drupal\Core\Asset\CssCollectionOptimizerLazy::optimizeGroup`:

      // Optimize this CSS file, but only if it's not yet minified.
      if (isset($css_asset['minified']) && $css_asset['minified']) {
        $data .= file_get_contents($css_asset['data']);
      }
      else {
        $data .= $this->optimizer->optimize($css_asset);
      }
πŸ› Bug report
Status

Needs work

Version

11.0 πŸ”₯

Component
Asset libraryΒ  β†’

Last updated 5 days ago

No maintainer
Created by

πŸ‡ΊπŸ‡ΈUnited States firewaller

Live updates comments and jobs are added and updated live.
  • Needs tests

    The change is currently missing an automated test that fails when run with the original code, and succeeds when the bug has been fixed.

Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024