-
-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Usage of has-symbols in GetIntrinsic.js breaks non-node usages of package #59
Comments
Perhaps you've deviated from the default settings by adding |
My current use case is with Ionic v4. Angular builds the app just fine and this problem only happens during runtime. |
Building the app "just fine" would include transforming |
@ljharb Apparently for Angular CLI this is no longer the case: angular/angular-cli#9827 (comment) Angular used to provide a shim for |
Closing this ticket out since the problem is actually in the |
Then Angular has chosen to make much of the ecosystem incompatible ¯_(ツ)_/¯ |
In
v1.15.0
,GetIntrinsic.js
started usinghas-symbols
:https://github.com/ljharb/es-abstract/blob/master/GetIntrinsic.js#L16
When called in a non-node environment, it causes an error since it is referencing
global
:I have confirmed that reverting to
v1.14.2
fixes the issue.The text was updated successfully, but these errors were encountered: