-
Notifications
You must be signed in to change notification settings - Fork 492
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
[BUG] Circular Dependency between comparator.js and range.js #318
Comments
We could maybe do this by putting the |
Oh, actually, that's not possible, because anyone doing I think this is a legitimate case of two classes that have to reference one another, and the refactor will be rather strained. Is there a way to just tell rollup to be ok with it? |
This throws warnings in react native projects with the metro bundler which can't be silenced unless you silence all warnings unfortunately |
Yeah, I'm still having this problem in 2023... |
I'm also having this issue when using rollup to build my package which uses some other packages with a dependency to semver. The semver version used is 7.6.2 (currently the latest). Is there a workaround for this bug? |
There is a circular dependency in
semver
whichrollup
will warn about when bundling the module:Even thought this may work because of Node's resolution mechanism, I'd recommended to refactor.
The text was updated successfully, but these errors were encountered: