You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 27, 2019. It is now read-only.
since component is written in generators, it needs generator support, which is done via regenerator. however, this is giant maintenance issue since it introduces a global which are not guaranteed to be compatible with different versions (which is why we're stuck at 0.4.6 or something).
we should rewrite the binaries to spawn through gnode or node --harmony-generators and not bother compiling before publishing: https://github.com/normalize/nlz/blob/master/bin/nlz#L79. this will make the executables much slower on node versions < 11, so we may want to wait until 0.12 is released to do this
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
since component is written in generators, it needs generator support, which is done via regenerator. however, this is giant maintenance issue since it introduces a global which are not guaranteed to be compatible with different versions (which is why we're stuck at 0.4.6 or something).
we should rewrite the binaries to spawn through
gnode
ornode --harmony-generators
and not bother compiling before publishing: https://github.com/normalize/nlz/blob/master/bin/nlz#L79. this will make the executables much slower on node versions< 11
, so we may want to wait until0.12
is released to do thisThe text was updated successfully, but these errors were encountered: