postcss-sort-media-queries icon indicating copy to clipboard operation
postcss-sort-media-queries copied to clipboard

PostCSS plugin for sorting and combining CSS media queries with mobile-first / desktop-first methodologies.

Results 9 postcss-sort-media-queries issues
Sort by recently updated
recently updated
newest added

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

Bumps [nanoid](https://github.com/ai/nanoid) from 3.1.30 to 3.2.0. Changelog Sourced from nanoid's changelog. Change Log This project adheres to Semantic Versioning. 3.2 Added --size and --alphabet arguments to binary (by Vitaly Baev)....

dependencies

Hi! It think that I found problem in this plugin. CSS allows nesting at-rules. The plugin ignores this. ## Problem ### Minimum code example: ``` import postcss from 'postcss'; import...

investigation

Hello, I have noticed that sorting no longer works correctly when "print" or perhaps another meda type is used in a media query: After sorting, I get the following order:...

enhancement
wontfix
investigation

Bumps [nanoid](https://github.com/ai/nanoid) from 3.1.30 to 3.3.4. Changelog Sourced from nanoid's changelog. 3.3.4 Fixed --help in CLI (by @​Lete114). 3.3.3 Reduced size (by Anton Khlynovskiy). 3.3.2 Fixed enhanced-resolve support. 3.3.1 Reduced...

dependencies

``` { sort: 'desktop-first' } ``` expected: ``` @media (max-aspect-ratio: 4/3) {...} @media (max-aspect-ratio: 1/1) {...} @media (max-aspect-ratio: 2/3) {...} @media (max-aspect-ratio: 1/2) {...} ``` result: ``` @media (max-aspect-ratio: 1/1)...

Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.4. Release notes Sourced from word-wrap's releases. 1.2.4 What's Changed Remove default indent by @​mohd-akram in jonschlinkert/word-wrap#24 🔒fix: CVE 2023 26115 (2) by @​OlafConijn in...

dependencies

Bumps [tough-cookie](https://github.com/salesforce/tough-cookie) from 4.0.0 to 4.1.3. Release notes Sourced from tough-cookie's releases. 4.1.3 Security fix for Prototype Pollution discovery in #282. This is a minor release, although output from the...

dependencies

Following the disscusions on https://github.com/yunusga/postcss-sort-media-queries/issues/38 and https://github.com/OlehDutchenko/sort-css-media-queries/issues/24 I decided to implement some sort of feature to adress it. Feel free to comment and let me know what is needed for...