Created by: gaearon
This bundles the regenerator runtime when you use the generator syntax. It would fix #125 (closed) and be the first step towards #51 (closed).
One issue I’m seeing right now is that minified bundle increases by 5kB min+gzip even if you don’t use generators because transform-runtime
currently externalizes Babel helpers whether you want it or not, and they bring in some stuff from core-js
including Symbol
.
@kittens said he’s open to fixing it on Babel side by adding helpers: [true]
to transform-runtime
so we can turn them off.