Aleksander Heintz

Results 138 comments of Aleksander Heintz

I'm not talking about a property at all. I'm talking jss-theme-reactor (no react involved in that part). Currently the API to create a stylesheet is `createStyleSheet(name: string, fn: Theme =>...

I do the same using a gatsby blog, where I import the comments only during a static build phase. It does mean that the comments on the blog is slow...

I would think with a "logg in using github" button, and some api magic it would work though? But the user would have to explicitly give permission to the page,...

Bummer. Thanks for this info though :)

@tsimbalar Or provide a way to use constructors. ```json "formatter": { "@type": "Serilog.Formatting.Json.JsonFormatter", "renderMessage": true } ``` This is basically the logic already used to allow doing `DymmyWithFormatter.formatter` already, just...

@Volune that depends on how you do the per-scope implementations though. If you do a weakmap of some-kind, the name won't matter. Something like this maybe (not tested)? ```js //...

Not to mention to similar. It would be easy to read the code and not see the difference.

@divmain you have a slight error in your code, at least with regards to how `::` works in babel today. ``` js const $ = function (fn, ...args) { args...

What I don't like about this though is that you have to do spread operator and array mapping to make it work. It's not horrible, but I would prefer language...

I didn't say I preferred no spread because I don't want es6, but because you're forced to allocate a new array of all the arguments, that you then have to...