github lynx-family/lynx-stack @lynx-js/template-webpack-plugin@0.6.10

latest releases: @lynx-js/web-core-server@0.19.0, @lynx-js/template-webpack-plugin@0.9.2, @lynx-js/css-extract-webpack-plugin@0.6.5...
7 months ago

Patch Changes

  • Fix CSS import order when enableCSSSelector is false. (#609)

    When the enableCSSSelector option is set to false, style rule priority is inversely related to @import order(Lynx CSS engine has the incorrect behavior). Reversing the import order to maintain correct priority is required. For example:

    @import "0.css";
    @import "1.css";

    will convert to:

    @import "1.css";
    @import "0.css";

Don't miss a new lynx-stack release

NewReleases is sending notifications on new releases.