postcss-sorting
postcss-sorting copied to clipboard
PostCSS plugin to keep rules and at-rules content in order.
Is it possible to add support for CSS inside `` tag?
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...
Hi there, thanks for this package! I tried to copy and paste the config example and it showed some errors. It seems like the array is supposed to be an...
Hi i have project with Bootstrap 5, my config for postcss-sorting has Order and Properties-Order sections, for instance: `order: [ 'custom-properties', 'dollar-variables', { type: 'at-rule', name: 'include', }, { type:...
Hi so after reading the docs I understand that CSS-in-JS will not be sorted on the root level due to property interpolation. I was wondering if there was any way...
Thanks for the great postcss plugin! Having some trouble with Bootstrap that uses the fact that only the last matching rule is used in browser: ```css @media (min-width: 768px) {...
Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.18.11 to 7.23.2. Release notes Sourced from @babel/traverse's releases. v7.23.2 (2023-10-11) NOTE: This release also re-publishes @babel/core, even if it does not appear in the linked release...
```css body { padding-top: 20px; padding: 0px 10px; } ``` results in a different lay-out then ```css body { padding: 0px 10px; padding-top: 20px; } ``` You could say the...
Similar to #107 but error on another line of https://github.com/hudochenkov/postcss-sorting/blob/6027f1c376cbe78a2298bcca8e23f862457893c5/lib/isAllowedToProcess.js#L18 Command: ```bash postcss src/tailwind.css -o src/tailwind.generated.css ``` Error I got: ``` TypeError: Cannot read property 'includes' of undefined at ...\src\tailwind.css:1:1...
Added some missing short hands ([Constituent properties](https://developer.mozilla.org/en-US/docs/Web/CSS/view-timeline#constituent_properties)): - [margin-block](https://developer.mozilla.org/en-US/docs/Web/CSS/margin-block) - [margin-inline](https://developer.mozilla.org/en-US/docs/Web/CSS/margin-inline) - [padding-block](https://developer.mozilla.org/en-US/docs/Web/CSS/padding-block) - [padding-inline](https://developer.mozilla.org/en-US/docs/Web/CSS/padding-inline) - [offset](https://developer.mozilla.org/en-US/docs/Web/CSS/offset) - [overflow](https://developer.mozilla.org/en-US/docs/Web/CSS/overflow) - [mask-border](https://developer.mozilla.org/en-US/docs/Web/CSS/mask-border)