sheetify
sheetify copied to clipboard
:sparkles: Modular CSS bundler for browserify
I want to write a package to dedupe CSS; all of it. Problem is: we can't access the whole bundle because we stream it out. Should we perhaps introduce a...
I totally dig this [pr in postcss-prefix](https://github.com/stackcss/postcss-prefix/pull/9), I think it makes the API for globals muchhhh cleaner and agree on changes that drop deps. butttt I wonder if it would...
Why did the `global` option disappear in [a3a3ff591832802c924cc6652e228ee19af2335e](https://github.com/stackcss/sheetify/commit/a3a3ff591832802c924cc6652e228ee19af2335e)? AFAICT, styles are now global unless you prefix them with `:host`. The current README also indicates this, in that `:host` is used...
From https://github.com/sheetify/sheetify/issues/32#issuecomment-170731218 > an open question is whether we specify any default plugins, such as [what `css-modulesify` does](https://github.com/css-modules/css-modulesify#postcss-plugins). specifically i'm thinking of [`postcss-import`](https://github.com/postcss/postcss-import), perhaps also a way to pass values...
I have the following problem. I'm using two npm packages that use css defined on their `package.json` files. The first one, [tachyons](https://github.com/tachyons-css/tachyons), defines in the main and style section a...
Hi! I am trying to implement themes for [parameters manager](https://github.com/dfcreative/prama) with sheetify, and due to namespacing css sheetify is ideal for that. The only issue is that whenever theme is...
Example: ``` css /* comment.css */ :host .header { color: blue; } ``` ``` css /* article.css */ :host .header { color: red; } ``` ``` html Article title Comment...
@helveticade pointed out that inspecting HTML with just hashes doesn't relay a lot of information per-se; when debugging having something like the file filename / dirname available is neat; perhaps...