rollup-plugin-styles icon indicating copy to clipboard operation
rollup-plugin-styles copied to clipboard

🎨 Universal Rollup plugin for styles: PostCSS, Sass, Less, Stylus and more.

Results 73 rollup-plugin-styles issues
Sort by recently updated
recently updated
newest added

Hello, I am trying to use this plugin without "injecting" CSS in JS. I tried this, but it did not work: ```javascript styles({ include: ['./src/css/style.css'], mode: ['extract', 'style.css'], minimize: true,...

Stylus loader uses the following options to support loading files from `node_modules` https://github.com/Anidetrix/rollup-plugin-styles/blob/418a5db352a8b402a723adfe74dc0cc830ba4121/src/loaders/stylus.ts#L22-L24 The problem with this configuration is that it only resolves `node_modules` correctly if the file sits on...

Rollup-plugin-styles has the minify option, that calls nanocss. Nanocss has a website describing the different plugins. But I do not get how to pass a particular option to nanocss, e.g....

documentation

I'm trying to correclty import a SVG inside a CSS file, this is what I'm doing in my source file: ```css ul { list-style-image: url('../img/check.svg'); } ``` and this is...

Good day! I'm using `rollup-plugin-styles` with the rollup options `preserveModules` and `preserveModulesRoot`. In the resulting file structure I need to keep the original `publicPath` of the `url` asset and the...

Hi everyone. Im wondering is it possible to import css files into js using **import** syntax with preserveModules:true in rollup config? Bundling all css in one file is not an...

I'm sorry for asking this. but I see the last commit is on `Mar 7, 2022`. Does this project still accept new PRs for features or bugs fixed ?

in inject mode, custom inject function can operate output result

This plugin currently is not compatible with rollup v3, because it requires rollup 2 as a peer dependency: ```json "peerDependencies": { "rollup": "^2.63.0" }, ``` From what I have seen,...