Ben Newman
Ben Newman
What version of babel? We've had some trouble keeping the regenerator compiler and runtime in sync during that timeframe, since babel uses them independently, so I'm 90% certain this would...
Hmm, those versions of `babel-core` and `regenerator` should not be affected by the problems I was referring to, so I'm less confident I know what the problem is. Can you...
This issue is exactly the sort of optimization opportunity I was hoping to surface with #180, so thanks very much for reporting it! Fixing this issue will involve refining the...
@jlongster That's an interesting idea. I used https://github.com/benjamn/recast only because it's a tool I wrote and understand, but the dependency is very small/swappable (essentially confined to https://github.com/facebook/regenerator/blob/master/main.js). Want to try...
I believe you should be using `babel-plugin-transform-regenerator` instead of `babel-plugin-transform-async-to-generator`, but I agree this is something we should fix in the default setup.
cc @hzoo could this be related to the removal of `babel-plugin-transform-runtime` (#310)?
@peterdivvito Any chance you could put together a small reproduction? Happy to debug this if it's reproducible.
@dantman I agree with your prediction that this problem will get worse with time, even though I also believe it hasn't been that big of a problem until recently. In...
Sorry for the delay! I think we should support a way of calling the `install` function (aka `meteorInstall` in Meteor) that allows replacing existing modules, rather than adding a new...
Hmm, you have a point, but what do you think about async arrow functions? E.g., `async (x, y) => x + await y`.