Michał Zochniak

Results 50 comments of Michał Zochniak

Done! Bumped version and recompiled browser bundle

@0xdevalias apologies for radio silence. This has left us baffled for some time but right now we finally have a repro. Fix is coming, thank you for your patience.

Weird, maybe installing iced-runtime-3 overwrites iced-coffee-script with a different version?

Hm, but won't `iced3 -c` compile just the `script.coffee`, so anything that script.js tries to import might not be compiled?

async/defer is "just" a syntactic sugar for callback based asynchronous functions. So in theory you could try to do something like `await promise_obj.then defer result` but I'm not sure how...

I will try to experiment with `iced3 -c` and `babel-node` once I get off work, in few hours.

If you have top-level await/defer, it has to wrap your entire file in a function, which probably causes this error. Iced should probably handle this better, I overlooked the fact...

What are your compile flags right now? Can you try something like `iced3 -b -c -I node script.coffee`?

Yes, but I just remembered that ES6 modules in CoffeeScript forces the _bare_ option, because otherwise the whole code is wrapped in a top-level function anyways. So by doing ES6...

So the compiled release files will be in the same branch, but we will only commit them for the release? Kind of like it has been done so far. Do...