Results 114 comments of Soviut

Perhaps as a sub-proposal, some way of indicating that the colour is ARGB vs RGBA? ``` #RRGGBBAA ``` versus ``` ##AARRGGBB ``` or ``` #RRGGBB,AA #RRGGBB|AA #RRGGBB_AA ```

A considerable amount of discussion was had regarding the development of the extend() but not every edge case can always be caught. The more examples you can provide, the easier...

Do you mean the `:empty` pseudo-selector? http://reference.sitepoint.com/css/pseudoclass-empty

Why would you want to keep them? They're not doing anything lying around blank in the generated CSS file. You say you're trying to do styling via Firebug, but I...

This seems like a _very_ specific use case. In most cases, people would rather LESS optimized their CSS and _didn't_ leave empty rules. I would suggest using `less.watch()` to automatically...

Agreed. @agatronic 's solution does what you need without causing every other LESS file to generate inefficient CSS.

@raldred There are already `.cents()` and `.dollars()` methods that return their respective amounts. I was suggesting they be given an optional argument so you could use them to set the...

@robinsondotnet I'd definitely still like this feature and can help you with the review if you want. The basic concept is that it would work for things like (`on`, `off`),...

A really quick heads up, rather than invoking the entire `JSON.parse` the transform can also be just ```typescript z.string().toLowerCase().transform((x) => x === 'true').pipe(z.boolean()) ```

I have the same issue but with a `json` blob. I tried adding a node compatibility flag to `wrangler.toml` but it did not seem to work. ```toml compatibility_flags = [...