-
Notifications
You must be signed in to change notification settings - Fork 4.7k
DEWP: Handle cyclical module dependencies #65291
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
edb8889
Add tests for cyclical dependencies
michalczaplinski 67d0676
Add the externals and make the test fail
michalczaplinski 8fd700f
Add cycle detection in dependency path checking
michalczaplinski 5654813
Revert changes
sirreal b19c3e0
Propose static WeakSet/WeakMap implementation.
sirreal 3f8f2f4
Add CHANGELOG entry
sirreal b5e33db
Remove redundant plugin config in test
sirreal 44d6968
Revert "Remove redundant plugin config in test"
sirreal 0c2de0d
Remove redundant plugin config in test
sirreal 81d15af
Updated the snapshot files
michalczaplinski 8a0eabb
Merge remote-tracking branch 'origin/trunk' into fix/dewp-cyclical-deps
michalczaplinski File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add cycle detection in dependency path checking
Enhanced the dependency resolution logic to detect cycles in the module graph, preventing infinite loops during static dependency path checks. Introduced a Set to track visited blocks and avoid revisiting them.
- Loading branch information
commit 8fd700f3ec475a0256e2d941e68e0a89491871e3
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It might be better to only store IDs of each visited block instead of the whole block. This would use less memory.
However, I could not see if the
DependenciesBlockhas a stable ID of any kind: https://github.com/webpack/webpack/blob/899f06934391baede59da3dcd35b5ef51c675dbe/lib/DependenciesBlock.js#L29Without benchmarking, it's also hard to know if it makes a difference.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have some ideas for this, I'm working on it now.