postcss-import icon indicating copy to clipboard operation
postcss-import copied to clipboard

PostCSS plugin to inline at-import rules content

Results 23 postcss-import issues
Sort by recently updated
recently updated
newest added

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](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) |...

deps

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...

deps

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...

enhancement
help wanted

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](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) | [![age](https://badges.renovateapi.com/packages/npm/eslint-config-problems/6.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)...

deps

Example: importfile.css: ``` @import 'somefile.css' (min-width: 36em);` ``` somefile.css: ``` .select { foo: bar; } ``` Output: ``` @media (min-width:36em){ .select { foo: bar; } } ``` Desired output: ```...

enhancement
help wanted

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...

bug
help wanted

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",...

enhancement
discussion

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...

enhancement
help wanted
discussion