postcss-import
postcss-import copied to clipboard
PostCSS plugin to inline at-import rules content
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [ava](https://avajs.dev) ([source](https://togithub.com/avajs/ava)) | [`^3.0.0` -> `^4.0.0`](https://renovatebot.com/diffs/npm/ava/3.15.0/4.3.1) |...
fixes : https://github.com/postcss/postcss-import/issues/495 @RyanZim it still feels a bit like the complexity (which I added) is exploding and the overal shape of the code base isn't optimal. But I also...
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/postcss/postcss-import). This repository currently has no open or...
I created a basic reproduction case here: https://github.com/mvsde/postcss-cascade-layers What’s happening: I `@import` another CSS file with `layer(test)`. That other file includes a media query. After running this through PostCSS with...
I have my own common project folder with lots of small css files. I have no problem if some partials are emply. I might add css to them later. Is...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [eslint-config-problems](https://togithub.com/ryanzim/eslint-config-problems) | [`^5.0.0` -> `^6.0.0`](https://renovatebot.com/diffs/npm/eslint-config-problems/5.0.0/6.0.0) | [](https://docs.renovatebot.com/merge-confidence/)...
Example: importfile.css: ``` @import 'somefile.css' (min-width: 36em);` ``` somefile.css: ``` .select { foo: bar; } ``` Output: ``` @media (min-width:36em){ .select { foo: bar; } } ``` Desired output: ```...
If I use postcss-import [v14](https://github.com/postcss/postcss-import/releases/tag/14.0.0) I get the following warning: ``` postcss-import: @charset must precede all other statements ``` I see this was introduced in #447. Looks like my charsets...
Love the `style` support, but would really helpful for conditional exports to also be legible to `postcss-import`: ``` { ..., "exports": { ".": "./dist/index.js", "./*": "./dist/lib/*/index.js", "./styles": "./dist/styles/index.css", "./styles/*": "./dist/styles/*/index.css",...
This plugin uses a different import order than the browser, which can lead to visual discrepancies when CSS is bundled vs. unbundled. I believe this is a regression and that...