Sindre Aarsaether

Results 51 comments of Sindre Aarsaether

Can you try to run imba with `-S` - which means disabling source mapping? I think there is an issue now where it doesnt correctly identify when only styles have...

Not currently. Should probably allow line continuations either by ending the preceding line with a backslash (or some other character) - or possibly when the subsequent lines are indented twice?

className is essentially never respected by Imba, and should really add a warning if you try to do this. You can do ``. Imba does a lot of optimized handling...

Very good point, I will add that. I should also update React to use 0.14, I think it might perform better as well.

This is a pretty cool demo project. Maybe I should record a bunch of scrims trying to implement one (on scrimba).

That is pretty nice :) We still need to add it as an actual clientside template though, with highlighting and compilation etc without the need for spawning a docker instance.

I guess they reside here: https://github.com/codesandbox/codesandbox-client/tree/master/packages/common/src/templates. Not really sure what it takes to get it working, but I'm sure Ives will gladly add it as an official clientside template if...

That is less than ideal. Will investigate

Fwiw, skipping structures for these objects reduced the (compressed) size of the full stream from 500kb to 470kb, and the uncompressed by ~200kb. Unpacking performance seems about the same, but...

Made an isolated test with the real-world data we have. ``` useRecords(fn) – 1.35mb – pack: 10.2498ms unpack: 9.3448ms useRecords – 1.46mb – pack: 11.4979ms unpack: 15.3999ms ``` So, in...